comparison stubs/PIL/ImageMath.pyi @ 1947:3b2255e3576d

big stubgen run for PIL, moviepy, rx Ignore-this: 349c755d8d70fdd1ff5711bde41f1dcb
author Drew Perttula <drewp@bigasterisk.com>
date Wed, 05 Jun 2019 23:14:49 +0000
parents
children
comparison
equal deleted inserted replaced
1946:a362b892cb43 1947:3b2255e3576d
1 # Stubs for PIL.ImageMath (Python 3)
2 #
3 # NOTE: This dynamically typed stub was automatically generated by stubgen.
4
5 import __builtin__
6 from typing import Any, Optional
7
8 builtins = __builtin__
9 VERBOSE: int
10
11 class _Operand:
12 im: Any = ...
13 def __init__(self, im: Any) -> None: ...
14 def apply(self, op: Any, im1: Any, im2: Optional[Any] = ..., mode: Optional[Any] = ...): ...
15 def __bool__(self): ...
16 __nonzero__: Any = ...
17 def __abs__(self): ...
18 def __pos__(self): ...
19 def __neg__(self): ...
20 def __add__(self, other: Any): ...
21 def __radd__(self, other: Any): ...
22 def __sub__(self, other: Any): ...
23 def __rsub__(self, other: Any): ...
24 def __mul__(self, other: Any): ...
25 def __rmul__(self, other: Any): ...
26 def __truediv__(self, other: Any): ...
27 def __rtruediv__(self, other: Any): ...
28 def __mod__(self, other: Any): ...
29 def __rmod__(self, other: Any): ...
30 def __pow__(self, other: Any): ...
31 def __rpow__(self, other: Any): ...
32 __div__: Any = ...
33 __rdiv__: Any = ...
34 def __invert__(self): ...
35 def __and__(self, other: Any): ...
36 def __rand__(self, other: Any): ...
37 def __or__(self, other: Any): ...
38 def __ror__(self, other: Any): ...
39 def __xor__(self, other: Any): ...
40 def __rxor__(self, other: Any): ...
41 def __lshift__(self, other: Any): ...
42 def __rshift__(self, other: Any): ...
43 def __eq__(self, other: Any): ...
44 def __ne__(self, other: Any): ...
45 def __lt__(self, other: Any): ...
46 def __le__(self, other: Any): ...
47 def __gt__(self, other: Any): ...
48 def __ge__(self, other: Any): ...
49
50 def imagemath_int(self): ...
51 def imagemath_float(self): ...
52 def imagemath_equal(self, other: Any): ...
53 def imagemath_notequal(self, other: Any): ...
54 def imagemath_min(self, other: Any): ...
55 def imagemath_max(self, other: Any): ...
56 def imagemath_convert(self, mode: Any): ...
57
58 ops: Any
59
60 def eval(expression: Any, _dict: Any = ..., **kw: Any): ...