Skip to content
Closed
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
6 changes: 3 additions & 3 deletions stdlib/3.4/enum.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ def unique(enumeration: _S) -> _S: ...
if sys.version_info >= (3, 6):
_auto_null = ... # type: Any

class auto:
value = ... # type: Any

class Flag(Enum):
def __contains__(self: _T, other: _T) -> bool: ...
def __repr__(self) -> str: ...
Expand All @@ -54,3 +51,6 @@ if sys.version_info >= (3, 6):
__ror__ = __or__
__rand__ = __and__
__rxor__ = __xor__

class auto(IntFlag):
value = ... # type: Any