summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/borrowed_ref_1.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/crashers/borrowed_ref_1.py')
-rw-r--r--Lib/test/crashers/borrowed_ref_1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/crashers/borrowed_ref_1.py b/Lib/test/crashers/borrowed_ref_1.py
index d16ede2..b82f464 100644
--- a/Lib/test/crashers/borrowed_ref_1.py
+++ b/Lib/test/crashers/borrowed_ref_1.py
@@ -8,7 +8,7 @@ class A(object):
class B(object):
def __del__(self):
- print 'hi'
+ print('hi')
del D.__missing__
class D(dict):