summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.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_socket.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_socket.py')
-rwxr-xr-xLib/test/test_socket.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index c09f11e..7ac9260 100755
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -870,6 +870,7 @@ class GeneralModuleTests(unittest.TestCase):
p = proxy(s)
self.assertEqual(p.fileno(), s.fileno())
s = None
+ support.gc_collect() # For PyPy or other GCs.
try:
p.fileno()
except ReferenceError: