Bump faulthandler to 3.14 (#14135)

Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
This commit is contained in:
Semyon Moroz
2025-05-25 17:21:19 +00:00
committed by GitHub
parent 9810d95a28
commit e8cd48faaf
2 changed files with 4 additions and 1 deletions
@@ -27,7 +27,6 @@ ctypes.wintypes.HDROP
ctypes.wintypes.HFILE
ctypes.wintypes.HRESULT
ctypes.wintypes.HSZ
faulthandler.dump_c_stack
fractions.Fraction.__pow__
fractions.Fraction.__rpow__
gzip.GzipFile.readinto
+4
View File
@@ -4,6 +4,10 @@ from _typeshed import FileDescriptorLike
def cancel_dump_traceback_later() -> None: ...
def disable() -> None: ...
def dump_traceback(file: FileDescriptorLike = ..., all_threads: bool = ...) -> None: ...
if sys.version_info >= (3, 14):
def dump_c_stack(file: FileDescriptorLike = ...) -> None: ...
def dump_traceback_later(timeout: float, repeat: bool = ..., file: FileDescriptorLike = ..., exit: bool = ...) -> None: ...
def enable(file: FileDescriptorLike = ..., all_threads: bool = ...) -> None: ...
def is_enabled() -> bool: ...