mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-06-26 02:34:03 +08:00
Update sys for 3.14 (#14086)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import sys
|
||||
from _typeshed import MaybeNone, OptExcInfo, ProfileFunction, TraceFunction, structseq
|
||||
from _typeshed import MaybeNone, OptExcInfo, ProfileFunction, StrOrBytesPath, TraceFunction, structseq
|
||||
from _typeshed.importlib import MetaPathFinderProtocol, PathEntryFinderProtocol
|
||||
from builtins import object as _object
|
||||
from collections.abc import AsyncGenerator, Callable, Sequence
|
||||
@@ -470,3 +470,7 @@ if sys.version_info >= (3, 12):
|
||||
from . import _monitoring
|
||||
|
||||
monitoring = _monitoring
|
||||
|
||||
if sys.version_info >= (3, 14):
|
||||
def is_remote_debug_enabled() -> bool: ...
|
||||
def remote_exec(pid: int, script: StrOrBytesPath) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user