summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_enum.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-08-29 11:04:40 (GMT)
committerGitHub <noreply@github.com>2021-08-29 11:04:40 (GMT)
commit2a8127cafe1d196f858a3ecabf5f1df3eebf9a12 (patch)
treeddf073f1752e1dd20aba534964da961aeecf8c95 /Lib/test/test_enum.py
parent07d3d54f4e84b1259b800884b202701f69e408d8 (diff)
downloadcpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.zip
cpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.tar.gz
cpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.tar.bz2
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Diffstat (limited to 'Lib/test/test_enum.py')
-rw-r--r--Lib/test/test_enum.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_enum.py b/Lib/test/test_enum.py
index 52d7756..7d22087 100644
--- a/Lib/test/test_enum.py
+++ b/Lib/test/test_enum.py
@@ -2044,6 +2044,7 @@ class TestEnum(unittest.TestCase):
raise Exception('Exception not raised.')
def test_missing_exceptions_reset(self):
+ import gc
import weakref
#
class TestEnum(enum.Enum):
@@ -2070,8 +2071,9 @@ class TestEnum(unittest.TestCase):
class_2_ref = weakref.ref(Class2())
#
# The exception raised by Enum creates a reference loop and thus
- # Class2 instances will stick around until the next gargage collection
+ # Class2 instances will stick around until the next garbage collection
# cycle, unlike Class1.
+ gc.collect() # For PyPy or other GCs.
self.assertIs(class_1_ref(), None)
self.assertIs(class_2_ref(), None)