diff options
Diffstat (limited to 'Lib/test/crashers/loosing_mro_ref.py')
-rw-r--r-- | Lib/test/crashers/loosing_mro_ref.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/crashers/loosing_mro_ref.py b/Lib/test/crashers/loosing_mro_ref.py index f0b8047..5ecde63 100644 --- a/Lib/test/crashers/loosing_mro_ref.py +++ b/Lib/test/crashers/loosing_mro_ref.py @@ -32,5 +32,5 @@ class X(Base): # there from the beginning :-) locals()[MyKey()] = 5 -print X.mykey +print(X.mykey) # I get a segfault, or a slightly wrong assertion error in a debug build. |