mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
This commit is contained in:
parent
07d3d54f4e
commit
2a8127cafe
36 changed files with 144 additions and 14 deletions
1
Lib/test/test_array.py
Normal file → Executable file
1
Lib/test/test_array.py
Normal file → Executable file
|
@ -1097,6 +1097,7 @@ class BaseTest:
|
|||
p = weakref.proxy(s)
|
||||
self.assertEqual(p.tobytes(), s.tobytes())
|
||||
s = None
|
||||
support.gc_collect() # For PyPy or other GCs.
|
||||
self.assertRaises(ReferenceError, len, p)
|
||||
|
||||
@unittest.skipUnless(hasattr(sys, 'getrefcount'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue