We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07b2b73 commit 31cde9aCopy full SHA for 31cde9a
libpython_extensions.py
@@ -35,13 +35,20 @@ def check_python_bytecode_version() -> None:
35
"""
36
inferior_version, debugger_version = get_python_versions()
37
if not inferior_version.startswith(debugger_version):
38
- print(
+ raise gdb.GdbError(
39
f"Warning: Mismatched Python version between "
40
f"inferior ({inferior_version}) and "
41
f"debugger ({debugger_version}). "
42
f"The bytecode shown might be wrong."
43
)
44
45
+ use_computed_gotos = int(gdb.parse_and_eval("USE_COMPUTED_GOTOS"))
46
+ if use_computed_gotos:
47
48
+ "Warning: The inferior Python was built with 'computed gotos'. "
49
+ "Stepping bytecodes is not supported."
50
+ )
51
+
52
53
class PyDisassemble(gdb.Command):
54
0 commit comments