summaryrefslogtreecommitdiff
path: root/Lib/test/test_gdb.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-01-18 17:20:01 +0100
committerVictor Stinner <victor.stinner@gmail.com>2017-01-18 17:20:01 +0100
commitfa025f112f7467b124f7ac4be5e9c7bb3cc05ad8 (patch)
treec5259e9fa0022c79c98adf30a53d16d7111ec32c /Lib/test/test_gdb.py
parente69f0e6111facf751b75f6c73bb6dee2207af366 (diff)
downloadcpython-git-fa025f112f7467b124f7ac4be5e9c7bb3cc05ad8.tar.gz
Update and enhance python-gdb.py
Issue #29259: * Detect PyCFunction is the current frame, not only in the older frame * Ignore PyCFunction_Call() since it now calls _PyCFunction_FastCallDict(), and _PyCFunction_FastCallDict() is already detected
Diffstat (limited to 'Lib/test/test_gdb.py')
-rw-r--r--Lib/test/test_gdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_gdb.py b/Lib/test/test_gdb.py
index 60f1d92846..557591f76c 100644
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -845,7 +845,7 @@ id(42)
breakpoint='time_gmtime',
cmds_after_breakpoint=['py-bt-full'],
)
- self.assertIn('#0 <built-in method gmtime', gdb_output)
+ self.assertIn('#1 <built-in method gmtime', gdb_output)
class PyPrintTests(DebuggerTests):