From: Antoine Pitrou Date: Tue, 8 Dec 2009 19:38:17 +0000 (+0000) Subject: Merged revisions 76718 via svnmerge from X-Git-Tag: v3.2a1~2069 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2df5fc7a36bab95e5580cd5d6344ca4050675f61;p=python 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. ........ --- diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py index a27b975b4f..16f46d6e48 100644 --- a/Lib/urllib/parse.py +++ b/Lib/urllib/parse.py @@ -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):