Commit 4fd181c1 authored by Benjamin Peterson's avatar Benjamin Peterson

Merged revisions 78604 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78604 | benjamin.peterson | 2010-03-02 17:43:47 -0600 (Tue, 02 Mar 2010) | 1 line

  plug ref leaks
........
parent 16f2fd01
......@@ -4178,6 +4178,10 @@ def test_main():
category=DeprecationWarning)
support.run_unittest(__name__)
# Remove global references to avoid looking like we have refleaks.
RFile.seen = {}
WFile.seen = set()
if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment