diff options
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 a732b25b4d2..cab13fb4da5 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) |