aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_generators.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2021-08-29 14:04:40 +0300
committerGitHub <noreply@github.com>2021-08-29 14:04:40 +0300
commit2a8127cafe1d196f858a3ecabf5f1df3eebf9a12 (patch)
treeddf073f1752e1dd20aba534964da961aeecf8c95 /Lib/test/test_generators.py
parent07d3d54f4e84b1259b800884b202701f69e408d8 (diff)
downloadcpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.tar.gz
cpython-2a8127cafe1d196f858a3ecabf5f1df3eebf9a12.zip
bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)
Diffstat (limited to 'Lib/test/test_generators.py')
-rw-r--r--Lib/test/test_generators.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py
index 53d579e723c..d14c757c7b6 100644
--- a/Lib/test/test_generators.py
+++ b/Lib/test/test_generators.py
@@ -1966,6 +1966,8 @@ True
"""
coroutine_tests = """\
+>>> from test.support import gc_collect
+
Sending a value into a started generator:
>>> def f():
@@ -2189,7 +2191,7 @@ And finalization:
>>> g = f()
>>> next(g)
->>> del g
+>>> del g; gc_collect() # For PyPy or other GCs.
exiting
@@ -2204,7 +2206,7 @@ GeneratorExit is not caught by except Exception:
>>> g = f()
>>> next(g)
->>> del g
+>>> del g; gc_collect() # For PyPy or other GCs.
finally