Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions stdlib/marshal.pyi
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import builtins
import sys
import types
from _typeshed import ReadableBuffer, SupportsRead, SupportsWrite
Expand All @@ -10,7 +9,7 @@ _Marshallable: TypeAlias = (
# handled in w_object() in marshal.c
None
| type[StopIteration]
| builtins.ellipsis
| types.EllipsisType
| bool
# handled in w_complex_object() in marshal.c
| int
Expand Down