mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 23:21:29 +00:00 
			
		
		
		
	Merged revisions 82766 via svnmerge from
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. ........
This commit is contained in:
		
							parent
							
								
									ee3396901c
								
							
						
					
					
						commit
						ca126a02ea
					
				
					 2 changed files with 11 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -18,6 +18,11 @@
 | 
			
		|||
_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.
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -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),
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue