File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -184,3 +184,8 @@ else:
184
184
@final
185
185
class NoneType :
186
186
def __bool__ (self ) -> Literal [False ]: ...
187
+
188
+ # Actually the type of Ellipsis is <type 'ellipsis'>, but since it's
189
+ # not exposed anywhere under that name, we make it private here.
190
+ @final
191
+ class ellipsis : ...
Original file line number Diff line number Diff line change 1
1
import sys
2
2
import types
3
3
from _typeshed import (
4
+ ellipsis ,
4
5
OpenBinaryMode ,
5
6
OpenBinaryModeReading ,
6
7
OpenBinaryModeUpdating ,
@@ -1452,11 +1453,6 @@ def __import__(
1452
1453
level : int = ...,
1453
1454
) -> types .ModuleType : ...
1454
1455
1455
- # Actually the type of Ellipsis is <type 'ellipsis'>, but since it's
1456
- # not exposed anywhere under that name, we make it private here.
1457
- @final
1458
- class ellipsis : ...
1459
-
1460
1456
Ellipsis : ellipsis
1461
1457
1462
1458
class BaseException (object ):
You can’t perform that action at this time.
0 commit comments