mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
Merged revisions 73073-73074,73089 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73073 | benjamin.peterson | 2009-05-31 09:43:00 -0500 (Sun, 31 May 2009) | 1 line remove function import ........ r73074 | benjamin.peterson | 2009-05-31 10:00:27 -0500 (Sun, 31 May 2009) | 1 line __enter__ and __exit__ must be on the class ........ r73089 | andrew.kuchling | 2009-05-31 19:14:19 -0500 (Sun, 31 May 2009) | 1 line The class for regexes isn't called RegexObject any more; correct the text ........
This commit is contained in:
parent
be5f3712be
commit
8cc7d88bbc
3 changed files with 27 additions and 19 deletions
|
@ -6,6 +6,7 @@ if __name__ != 'test.support':
|
|||
import contextlib
|
||||
import errno
|
||||
import functools
|
||||
import gc
|
||||
import socket
|
||||
import sys
|
||||
import os
|
||||
|
@ -630,7 +631,6 @@ def gc_collect():
|
|||
longer than expected. This function tries its best to force all garbage
|
||||
objects to disappear.
|
||||
"""
|
||||
import gc
|
||||
gc.collect()
|
||||
gc.collect()
|
||||
gc.collect()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue