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.
1 parent 30262c4 commit 6c8e98cCopy full SHA for 6c8e98c
1 file changed
stdlib/sys/__init__.pyi
@@ -510,7 +510,11 @@ if sys.version_info >= (3, 12):
510
else:
511
def activate_stack_trampoline(backend: str, /) -> NoReturn: ...
512
513
+ from . import _monitoring as monitoring # noqa: F401 # pyright: ignore[reportUnusedImport]
514
+
515
if sys.version_info >= (3, 14):
516
def is_remote_debug_enabled() -> bool: ...
517
def remote_exec(pid: int, script: StrOrBytesPath) -> None: ...
518
def _is_immortal(op: object, /) -> bool: ...
519
520
+ from . import __jit as _jit # noqa: F401 # pyright: ignore[reportUnusedImport]
0 commit comments