Skip to content

Commit 8bc05ce

Browse files
committed
Replace use of builtins.ellipsis with types.EllipsisType
Needed for python#15712
1 parent f8938c2 commit 8bc05ce

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

stdlib/marshal.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import builtins
21
import sys
32
import types
43
from _typeshed import ReadableBuffer, SupportsRead, SupportsWrite
@@ -10,7 +9,7 @@ _Marshallable: TypeAlias = (
109
# handled in w_object() in marshal.c
1110
None
1211
| type[StopIteration]
13-
| builtins.ellipsis
12+
| types.EllipsisType
1413
| bool
1514
# handled in w_complex_object() in marshal.c
1615
| int

0 commit comments

Comments
 (0)