summaryrefslogtreecommitdiff
path: root/gdb-helpers
diff options
context:
space:
mode:
authorLuke T. Shumaker <lukeshu@lukeshu.com>2024-11-30 17:48:37 -0700
committerLuke T. Shumaker <lukeshu@lukeshu.com>2024-12-08 08:21:19 -0700
commitafe6542b30def82573e070371281c05dc593a739 (patch)
treeffcc60c16f7636599526c4899099ac33712979c7 /gdb-helpers
parente8f09fdd0e0aa7e17317a58474058b9272a12f93 (diff)
Pull in https://github.com/python/typeshed/pull/13169
Diffstat (limited to 'gdb-helpers')
-rw-r--r--gdb-helpers/libcr.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb-helpers/libcr.py b/gdb-helpers/libcr.py
index dbe7ec8..c8addc6 100644
--- a/gdb-helpers/libcr.py
+++ b/gdb-helpers/libcr.py
@@ -139,7 +139,9 @@ class CrSetJmpBreakpoint(gdb.Breakpoint):
def __init__(self, cr_globals: CrGlobals) -> None:
self.cr_globals = cr_globals
cr_globals.breakpoints += [self]
- super().__init__(function="_cr_plat_setjmp_pre", type=gdb.BP_BREAKPOINT, internal=True) # type: ignore
+ super().__init__(
+ function="_cr_plat_setjmp_pre", type=gdb.BP_BREAKPOINT, internal=True
+ )
def stop(self) -> bool:
if bool(gdb.parse_and_eval("env == &coroutine_add_env")):