Commit 270ba13a authored by Stefan Behnel's avatar Stefan Behnel

test improved deallocation in Py3.4

parent e7add1df
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
# tag: dealloc # tag: dealloc
import gc import gc
import sys
test_results = [] test_results = []
...@@ -132,7 +133,11 @@ class PySubTypeRefCycleDel(ExtTypeRefCycle): ...@@ -132,7 +133,11 @@ class PySubTypeRefCycleDel(ExtTypeRefCycle):
>>> obj = None >>> obj = None
>>> _ = gc.collect() >>> _ = gc.collect()
# no guarantees here ... >>> count = 2
>>> if sys.version_info >= (3, 4):
... count = find_name(PySubTypeRefCycleDel)
>>> count
2
""" """
def __del__(self): def __del__(self):
add_name(self) add_name(self)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment