summaryrefslogtreecommitdiffstats
path: root/Lib/test/gdb_sample.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-04-21 22:38:42 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2010-04-21 22:38:42 (GMT)
commit5ae681081975ac074bd030d3f23e99e3644cfe10 (patch)
treeb67876132e2572d1512af292da1b5cedfc0e8c54 /Lib/test/gdb_sample.py
parent4c4b078101fcb8502efac17d3f8d335700195337 (diff)
downloadcpython-5ae681081975ac074bd030d3f23e99e3644cfe10.zip
cpython-5ae681081975ac074bd030d3f23e99e3644cfe10.tar.gz
cpython-5ae681081975ac074bd030d3f23e99e3644cfe10.tar.bz2
Issue #8380: Port gdb/libpython to 3.x.
Diffstat (limited to 'Lib/test/gdb_sample.py')
-rw-r--r--Lib/test/gdb_sample.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/gdb_sample.py b/Lib/test/gdb_sample.py
index a732b25..cab13fb 100644
--- a/Lib/test/gdb_sample.py
+++ b/Lib/test/gdb_sample.py
@@ -7,6 +7,6 @@ def bar(a, b, c):
baz(a, b, c)
def baz(*args):
- print(42)
+ id(42)
foo(1, 2, 3)