]> granicus.if.org Git - python/commitdiff
Merged revisions 82766 via svnmerge from
authorR. David Murray <rdmurray@bitdance.com>
Sat, 10 Jul 2010 14:00:10 +0000 (14:00 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Sat, 10 Jul 2010 14:00:10 +0000 (14:00 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

Since 'purge' is an API change, modified it to be _purge for 3.1
and deleted the doc update.

........
  r82766 | r.david.murray | 2010-07-10 09:52:13 -0400 (Sat, 10 Jul 2010) | 5 lines

  Fix 'refleak' introduced by fnmatch cache purge tests.

  This introduces a 'purge' function for the fnmatch module analogous
  to the 'purge' function in the re module.
........

Lib/fnmatch.py
Lib/test/test_fnmatch.py

index 26ae4ccb14d70533fa13a69b7d38ad82a1786da1..be1fd1d16cea443d2264022f12feb9b6d115c75f 100644 (file)
@@ -12,12 +12,17 @@ corresponding to PATTERN.  (It does not compile it.)
 
 import re
 
-__all__ = ["filter", "fnmatch","fnmatchcase","translate"]
+__all__ = ["filter", "fnmatch", "fnmatchcase", "translate"]
 
 _cache = {}  # Maps text patterns to compiled regexen.
 _cacheb = {}  # Ditto for bytes patterns.
 _MAXCACHE = 100 # Maximum size of caches
 
+def _purge():
+    """Clear the pattern cache"""
+    _cache.clear()
+    _cacheb.clear()
+
 def fnmatch(name, pat):
     """Test whether FILENAME matches PATTERN.
 
index f2966ad72402f9a6e6bd66bbec6a99ece376b445..abf881146199b134c2d1c0985efc408bcd94aebd 100644 (file)
@@ -3,10 +3,14 @@
 from test import support
 import unittest
 
-from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _cacheb
+from fnmatch import fnmatch, fnmatchcase, _MAXCACHE, _cache, _cacheb, _purge
 
 
 class FnmatchTestCase(unittest.TestCase):
+
+    def tearDown(self):
+        _purge()
+
     def check_match(self, filename, pattern, should_match=1):
         if should_match:
             self.assertTrue(fnmatch(filename, pattern),