Commit 7292ba82 authored by Antoine Pitrou's avatar Antoine Pitrou

Merged revisions 76718 via svnmerge from

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

........
  r76718 | antoine.pitrou | 2009-12-08 20:35:12 +0100 (mar., 08 déc. 2009) | 3 lines

  Fix transient refleaks in test_urllib. Thanks to Florent Xicluna.
........
parent f379ebf3
......@@ -41,8 +41,9 @@ MAX_CACHE_SIZE = 20
_parse_cache = {}
def clear_cache():
"""Clear the parse cache."""
"""Clear the parse cache and the quoters cache."""
_parse_cache.clear()
_safe_quoters.clear()
class ResultMixin(object):
......
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