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 6c8e98c commit cf2f23aCopy full SHA for cf2f23a
1 file changed
stdlib/sys/__init__.pyi
@@ -510,11 +510,15 @@ 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]
+ from . import _monitoring
514
+
515
+ monitoring = _monitoring
516
517
if sys.version_info >= (3, 14):
518
def is_remote_debug_enabled() -> bool: ...
519
def remote_exec(pid: int, script: StrOrBytesPath) -> None: ...
520
def _is_immortal(op: object, /) -> bool: ...
521
- from . import __jit as _jit # noqa: F401 # pyright: ignore[reportUnusedImport]
522
+ from . import __jit
523
524
+ _jit = __jit
0 commit comments