diff options
author | Guido van Rossum <guido@python.org> | 2003-05-29 14:30:49 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-05-29 14:30:49 (GMT) |
commit | bb1861a996f659621a3d9de875027679ce1926eb (patch) | |
tree | 1d0952407a7db07cf9eaf264fadc0c91aac9e13f /Lib | |
parent | 1987c6693bbd83e27202ff8c1a8a3f8d53ecc5ed (diff) | |
download | cpython-bb1861a996f659621a3d9de875027679ce1926eb.zip cpython-bb1861a996f659621a3d9de875027679ce1926eb.tar.gz cpython-bb1861a996f659621a3d9de875027679ce1926eb.tar.bz2 |
Remove debug code from weakref_segfault().
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_descr.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 3a7f813..91f33a5 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -3884,8 +3884,6 @@ def weakref_segfault(): def __del__(self): x = self.ref() - print x - return x class Oops(object): pass |