We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_only_immortal
sys.getunicodeinternedsize
1 parent 6e333e6 commit d029c30Copy full SHA for d029c30
stdlib/sys/__init__.pyi
@@ -355,7 +355,11 @@ def set_int_max_str_digits(maxdigits: int) -> None: ...
355
def get_int_max_str_digits() -> int: ...
356
357
if sys.version_info >= (3, 12):
358
- def getunicodeinternedsize() -> int: ...
+ if sys.version_info >= (3, 13):
359
+ def getunicodeinternedsize(*, _only_immortal: bool = False) -> int: ...
360
+ else:
361
+ def getunicodeinternedsize() -> int: ...
362
+
363
def deactivate_stack_trampoline() -> None: ...
364
def is_stack_trampoline_active() -> bool: ...
365
# It always exists, but raises on non-linux platforms:
0 commit comments