diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-04-21 22:38:42 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-04-21 22:38:42 (GMT) |
commit | 5ae681081975ac074bd030d3f23e99e3644cfe10 (patch) | |
tree | b67876132e2572d1512af292da1b5cedfc0e8c54 /Lib/test/gdb_sample.py | |
parent | 4c4b078101fcb8502efac17d3f8d335700195337 (diff) | |
download | cpython-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.py | 2 |
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) |