-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathnumbers.pyi
More file actions
217 lines (205 loc) · 7.37 KB
/
numbers.pyi
File metadata and controls
217 lines (205 loc) · 7.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
# Note: these stubs are incomplete. The more complex type
# signatures are currently omitted.
#
# Use _ComplexLike, _RealLike and _IntegralLike for return types in this module
# rather than `numbers.Complex`, `numbers.Real` and `numbers.Integral`,
# to avoid an excessive number of `type: ignore`s in subclasses of these ABCs
# (since type checkers don't see `complex` as a subtype of `numbers.Complex`,
# nor `float` as a subtype of `numbers.Real`, etc.)
from abc import ABCMeta, abstractmethod
from typing import ClassVar, Literal, Protocol, overload, type_check_only
__all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
############################
# Protocols for return types
############################
# `_ComplexLike` is a structural-typing approximation
# of the `Complex` ABC, which is not (and cannot be) a protocol
#
# NOTE: We can't include `__complex__` here,
# as we want `int` to be seen as a subtype of `_ComplexLike`,
# and `int.__complex__` does not exist :(
@type_check_only
class _ComplexLike(Protocol):
def __neg__(self) -> _ComplexLike: ...
def __pos__(self) -> _ComplexLike: ...
def __abs__(self) -> _RealLike: ...
# _RealLike is a structural-typing approximation
# of the `Real` ABC, which is not (and cannot be) a protocol
@type_check_only
class _RealLike(_ComplexLike, Protocol):
def __trunc__(self) -> _IntegralLike: ...
def __floor__(self) -> _IntegralLike: ...
def __ceil__(self) -> _IntegralLike: ...
def __float__(self) -> float: ...
# Overridden from `_ComplexLike`
# for a more precise return type:
def __neg__(self) -> _RealLike: ...
def __pos__(self) -> _RealLike: ...
# _IntegralLike is a structural-typing approximation
# of the `Integral` ABC, which is not (and cannot be) a protocol
@type_check_only
class _IntegralLike(_RealLike, Protocol):
def __invert__(self) -> _IntegralLike: ...
def __int__(self) -> int: ...
def __index__(self) -> int: ...
# Overridden from `_ComplexLike`
# for a more precise return type:
def __abs__(self) -> _IntegralLike: ...
# Overridden from `RealLike`
# for a more precise return type:
def __neg__(self) -> _IntegralLike: ...
def __pos__(self) -> _IntegralLike: ...
#################
# Module "proper"
#################
class Number(metaclass=ABCMeta):
__slots__ = ()
@abstractmethod
def __hash__(self) -> int: ...
# See comment at the top of the file
# for why some of these return types are purposefully vague
class Complex(Number, _ComplexLike):
__slots__ = ()
@abstractmethod
def __complex__(self) -> complex: ...
def __bool__(self) -> bool: ...
@property
@abstractmethod
def real(self) -> _RealLike: ...
@property
@abstractmethod
def imag(self) -> _RealLike: ...
@abstractmethod
def __add__(self, other) -> _ComplexLike: ...
@abstractmethod
def __radd__(self, other) -> _ComplexLike: ...
@abstractmethod
def __neg__(self) -> _ComplexLike: ...
@abstractmethod
def __pos__(self) -> _ComplexLike: ...
def __sub__(self, other) -> _ComplexLike: ...
def __rsub__(self, other) -> _ComplexLike: ...
@abstractmethod
def __mul__(self, other) -> _ComplexLike: ...
@abstractmethod
def __rmul__(self, other) -> _ComplexLike: ...
@abstractmethod
def __truediv__(self, other) -> _ComplexLike: ...
@abstractmethod
def __rtruediv__(self, other) -> _ComplexLike: ...
@abstractmethod
def __pow__(self, exponent) -> _ComplexLike: ...
@abstractmethod
def __rpow__(self, base) -> _ComplexLike: ...
@abstractmethod
def __abs__(self) -> _RealLike: ...
@abstractmethod
def conjugate(self) -> _ComplexLike: ...
@abstractmethod
def __eq__(self, other: object) -> bool: ...
__hash__: ClassVar[None] # type: ignore[assignment]
# See comment at the top of the file
# for why some of these return types are purposefully vague
class Real(Complex, _RealLike):
__slots__ = ()
@abstractmethod
def __float__(self) -> float: ...
@abstractmethod
def __trunc__(self) -> _IntegralLike: ...
@abstractmethod
def __floor__(self) -> _IntegralLike: ...
@abstractmethod
def __ceil__(self) -> _IntegralLike: ...
@abstractmethod
@overload
def __round__(self, ndigits: None = None) -> _IntegralLike: ...
@abstractmethod
@overload
def __round__(self, ndigits: int) -> _RealLike: ...
def __divmod__(self, other) -> tuple[_RealLike, _RealLike]: ...
def __rdivmod__(self, other) -> tuple[_RealLike, _RealLike]: ...
@abstractmethod
def __floordiv__(self, other) -> _RealLike: ...
@abstractmethod
def __rfloordiv__(self, other) -> _RealLike: ...
@abstractmethod
def __mod__(self, other) -> _RealLike: ...
@abstractmethod
def __rmod__(self, other) -> _RealLike: ...
@abstractmethod
def __lt__(self, other) -> bool: ...
@abstractmethod
def __le__(self, other) -> bool: ...
def __complex__(self) -> complex: ...
@property
def real(self) -> _RealLike: ...
@property
def imag(self) -> Literal[0]: ...
def conjugate(self) -> _RealLike: ...
# Not actually overridden at runtime,
# but we override these in the stub to give them more precise return types:
@abstractmethod
def __pos__(self) -> _RealLike: ...
@abstractmethod
def __neg__(self) -> _RealLike: ...
# See comment at the top of the file
# for why some of these return types are purposefully vague
class Rational(Real):
__slots__ = ()
@property
@abstractmethod
def numerator(self) -> _IntegralLike: ...
@property
@abstractmethod
def denominator(self) -> _IntegralLike: ...
def __float__(self) -> float: ...
# See comment at the top of the file
# for why some of these return types are purposefully vague
class Integral(Rational, _IntegralLike):
__slots__ = ()
@abstractmethod
def __int__(self) -> int: ...
def __index__(self) -> int: ...
@abstractmethod
def __pow__(self, exponent, modulus=None) -> _IntegralLike: ...
@abstractmethod
def __lshift__(self, other) -> _IntegralLike: ...
@abstractmethod
def __rlshift__(self, other) -> _IntegralLike: ...
@abstractmethod
def __rshift__(self, other) -> _IntegralLike: ...
@abstractmethod
def __rrshift__(self, other) -> _IntegralLike: ...
@abstractmethod
def __and__(self, other) -> _IntegralLike: ...
@abstractmethod
def __rand__(self, other) -> _IntegralLike: ...
@abstractmethod
def __xor__(self, other) -> _IntegralLike: ...
@abstractmethod
def __rxor__(self, other) -> _IntegralLike: ...
@abstractmethod
def __or__(self, other) -> _IntegralLike: ...
@abstractmethod
def __ror__(self, other) -> _IntegralLike: ...
@abstractmethod
def __invert__(self) -> _IntegralLike: ...
def __float__(self) -> float: ...
@property
def numerator(self) -> _IntegralLike: ...
@property
def denominator(self) -> Literal[1]: ...
# Not actually overridden at runtime,
# but we override these in the stub to give them more precise return types:
@abstractmethod
def __pos__(self) -> _IntegralLike: ...
@abstractmethod
def __neg__(self) -> _IntegralLike: ...
@abstractmethod
def __abs__(self) -> _IntegralLike: ...
@abstractmethod
@overload
def __round__(self, ndigits: None = None) -> _IntegralLike: ...
@abstractmethod
@overload
def __round__(self, ndigits: int) -> _IntegralLike: ...