summaryrefslogtreecommitdiffstats
path: root/Lib/fnmatch.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 82766 via svnmerge fromR. David Murray2010-07-101-1/+6
| | | | | | | | | | | | | | | | 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. ........
* Merged revisions 82730-82731 via svnmerge fromR. David Murray2010-07-091-0/+3
| | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r82730 | r.david.murray | 2010-07-09 08:23:21 -0400 (Fri, 09 Jul 2010) | 4 lines 7846: limit fnmatch pattern cache to _MAXCACHE=100 entries. Patch by Andrew Clegg. ........ r82731 | r.david.murray | 2010-07-09 09:14:03 -0400 (Fri, 09 Jul 2010) | 2 lines Fix sort order mistake in Misc/ACKS. ........
* Merged revisions 74476 via svnmerge fromGregory P. Smith2009-11-011-1/+1
| | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r74476 | gregory.p.smith | 2009-08-16 11:58:46 -0700 (Sun, 16 Aug 2009) | 9 lines Merged revisions 74475 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r74475 | gregory.p.smith | 2009-08-16 11:52:58 -0700 (Sun, 16 Aug 2009) | 2 lines Issue 6665: Fix fnmatch to properly match filenames with newlines in them. ........ ................
* Change fnmatch.py to use separate caches for str and bytes keys.Guido van Rossum2008-10-031-3/+5
| | | | This is necessary to pass the tests with -bb.
* Issue #3187: Better support for "undecodable" filenames. Code by VictorGuido van Rossum2008-10-021-10/+17
| | | | Stinner, with small tweaks by GvR.
* SF patch #765238: fix fnmatch.__all__Raymond Hettinger2003-07-131-1/+1
| | | | (Contributed by George Yoshida.)
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-2/+2
|
* Patch #409973: Speedup glob.glob, add fnmatch.filter.Martin v. Löwis2001-06-061-0/+20
|
* Donovan Baarda <abo@users.sourceforge.net>:Fred Drake2001-03-211-9/+5
| | | | | | Patch to make "\" in a character group work properly. This closes SF bug #409651.
* more __all__ updatesSkip Montanaro2001-01-201-0/+2
|
* Whitespace normalization.Tim Peters2001-01-141-68/+68
|
* typos fixed by Rob HooftJeremy Hylton2000-06-281-1/+1
|
* Convert all remaining *simple* cases of regex usage to re usage.Guido van Rossum1997-10-221-9/+6
|
* changes for the MacGuido van Rossum1995-01-271-9/+45
|
* Get rid of debug print statement.Guido van Rossum1992-01-141-1/+0
|
* Rewritten using regex.Guido van Rossum1992-01-121-65/+45
|
* New == syntaxGuido van Rossum1992-01-011-18/+24
|
* Support [...] ranges. Also [!...] for negated ranges, SYSV shell style.Guido van Rossum1991-04-071-14/+50
|
* Initial revisionGuido van Rossum1991-01-011-0/+35