Skip to content

Commit 1d548aa

Browse files
authored
Add show_flag_values in enum module. (#14928)
1 parent 543f7f2 commit 1d548aa

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

stdlib/enum.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ if sys.version_info >= (3, 11):
309309
def global_enum(cls: _EnumerationT, update_str: bool = False) -> _EnumerationT: ...
310310
def global_enum_repr(self: Enum) -> str: ...
311311
def global_flag_repr(self: Flag) -> str: ...
312+
def show_flag_values(value: int) -> list[int]: ...
312313

313314
if sys.version_info >= (3, 12):
314315
# The body of the class is the same, but the base classes are different.

0 commit comments

Comments
 (0)