diff options
Diffstat (limited to 'Lib/test/crashers/gc_inspection.py')
-rw-r--r-- | Lib/test/crashers/gc_inspection.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/crashers/gc_inspection.py b/Lib/test/crashers/gc_inspection.py index 10caa79..ae85f97 100644 --- a/Lib/test/crashers/gc_inspection.py +++ b/Lib/test/crashers/gc_inspection.py @@ -25,8 +25,8 @@ def g(): yield marker # now the marker is in the tuple being constructed [tup] = [x for x in gc.get_referrers(marker) if type(x) is tuple] - print tup - print tup[1] + print(tup) + print(tup[1]) tuple(g()) |