summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorINADA Naoki <songofacandy@gmail.com>2017-02-03 07:43:03 +0900
committerINADA Naoki <songofacandy@gmail.com>2017-02-03 07:43:03 +0900
commit99c092a531abf57a8f5c37356dc6971cdfed497a (patch)
tree3fdbd35d564003f85f11a9e1bf37baee3f932321 /Lib
parent039f1495e853018c3a7024b843a138f8b4161b6d (diff)
downloadcpython-99c092a531abf57a8f5c37356dc6971cdfed497a.tar.gz
Issue #29263: LOAD_METHOD support for C methods
Calling builtin method is at most 10% faster.
Diffstat (limited to 'Lib')
-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 b7554d698c..46736f62d5 100644
--- a/Lib/test/test_gdb.py
+++ b/Lib/test/test_gdb.py
@@ -846,7 +846,7 @@ id(42)
breakpoint='time_gmtime',
cmds_after_breakpoint=['py-bt-full'],
)
- self.assertIn('#1 <built-in method gmtime', gdb_output)
+ self.assertIn('#2 <built-in method gmtime', gdb_output)
@unittest.skipIf(python_is_optimized(),
"Python was compiled with optimizations")