Update sys for 3.14 (#14086)

This commit is contained in:
Max Muoto
2025-05-16 21:17:20 -05:00
committed by GitHub
parent 0125fe2848
commit 0ba818e2b5
2 changed files with 5 additions and 3 deletions
@@ -91,8 +91,6 @@ sre_compile.CH_NEGATE
sre_constants.CH_NEGATE
sre_parse.CH_NEGATE
string.Template.flags
sys.is_remote_debug_enabled
sys.remote_exec
tarfile.TarFile.zstopen
tkinter.Event.__class_getitem__
turtle.__all__
+5 -1
View File
@@ -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: ...