We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15df8f8 commit 7aeb06fCopy full SHA for 7aeb06f
Lib/test/test_gdb.py
@@ -117,6 +117,9 @@ def run_gdb(*args, **env_vars):
117
if not gdbpy_version:
118
raise unittest.SkipTest("gdb not built with embedded python support")
119
120
+if "major=2" in gdbpy_version:
121
+ raise unittest.SkipTest("gdb built with Python 2")
122
+
123
# Verify that "gdb" can load our custom hooks, as OS security settings may
124
# disallow this without a customized .gdbinit.
125
_, gdbpy_errors = run_gdb('--args', sys.executable)
0 commit comments