diff options
author | Guido van Rossum <guido@python.org> | 2008-01-24 15:53:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2008-01-24 15:53:22 (GMT) |
commit | 4e3f12486fe0e4d6caf3c46e501a15283cf1c95e (patch) | |
tree | a3ac9dbea90167a95c346af098463ee03f5d87b6 | |
parent | d7cf32e66831a7ea8825befef3dc2ab8533ef1bc (diff) | |
download | cpython-4e3f12486fe0e4d6caf3c46e501a15283cf1c95e.zip cpython-4e3f12486fe0e4d6caf3c46e501a15283cf1c95e.tar.gz cpython-4e3f12486fe0e4d6caf3c46e501a15283cf1c95e.tar.bz2 |
Fi debug turd -- a call accidentally left out.
-rw-r--r-- | Lib/test/test_descr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_descr.py b/Lib/test/test_descr.py index 3f5ef8d..08dfcdf 100644 --- a/Lib/test/test_descr.py +++ b/Lib/test/test_descr.py @@ -4505,7 +4505,7 @@ def test_borrowed_ref_4_segfault(): __builtin__.__import__ = orig_import def test_main(): - #XXXweakref_segfault() # Must be first, somehow + weakref_segfault() # Must be first, somehow wrapper_segfault() do_this_first() class_docstrings() |