aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/fnmatch.py
Commit message (Expand)AuthorAge
* gh-89973: Fix re.error in the fnmatch module. (GH-93072)Serhiy Storchaka2022-06-05
* bpo-47080: Use atomic groups to simplify fnmatch (GH-32029)Tim Peters2022-03-21
* bpo-42799: fnmatch module: bump up size of lru_cache for patterns (GH-27084)andrei kulakov2021-07-15
* bpo-36769: Document that fnmatch.filter supports any kind of iterable (#13039)Andre Delfino2020-12-18
* bpo-40480: restore ability to join fnmatch.translate() results (GH-20049)Tim Peters2020-05-11
* bpo-40480 "fnmatch" exponential execution time (GH-19908)Tim Peters2020-05-05
* bpo-32775: Fix regular expression warnings in fnmatch. (#5583)Serhiy Storchaka2018-02-09
* Issue #22493: Inline flags now should be used only at the start of theSerhiy Storchaka2016-09-11
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-08
* Set cache sizes to a power-of-twoRaymond Hettinger2013-02-17
* Fix BytesWarnings in fnmatchAntoine Pitrou2011-11-08
* Bytes are already distinct from text, so typed=True isn't necessary.Raymond Hettinger2011-10-20
* Simplify calls in fnmatch.Raymond Hettinger2011-10-20
* Re-apply r83871.Antoine Pitrou2010-08-13
* Also temporarily revert r83871, to fix compilation on buildbotsAntoine Pitrou2010-08-09
* Issue 7846: fnmatch cache can grow without boundRaymond Hettinger2010-08-09
* Make fnmatch be more PEP 8 compliant.Brett Cannon2010-07-23
* Fix 'refleak' introduced by fnmatch cache purge tests.R. David Murray2010-07-10
* 7846: limit fnmatch pattern cache to _MAXCACHE=100 entries.R. David Murray2010-07-09
* Merged revisions 74475 via svnmerge fromGregory P. Smith2009-08-16
* Change fnmatch.py to use separate caches for str and bytes keys.Guido van Rossum2008-10-03
* Issue #3187: Better support for "undecodable" filenames. Code by VictorGuido van Rossum2008-10-02
* SF patch #765238: fix fnmatch.__all__Raymond Hettinger2003-07-13
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-01
* Patch #409973: Speedup glob.glob, add fnmatch.filter.Martin v. Löwis2001-06-06
* Donovan Baarda <abo@users.sourceforge.net>:Fred Drake2001-03-21
* more __all__ updatesSkip Montanaro2001-01-20
* Whitespace normalization.Tim Peters2001-01-14
* typos fixed by Rob HooftJeremy Hylton2000-06-28
* Convert all remaining *simple* cases of regex usage to re usage.Guido van Rossum1997-10-22
* changes for the MacGuido van Rossum1995-01-27
* Get rid of debug print statement.Guido van Rossum1992-01-14
* Rewritten using regex.Guido van Rossum1992-01-12
* New == syntaxGuido van Rossum1992-01-01
* Support [...] ranges. Also [!...] for negated ranges, SYSV shell style.Guido van Rossum1991-04-07
* Initial revisionGuido van Rossum1991-01-01