summaryrefslogtreecommitdiff
path: root/Lib/glob.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-38149: Call sys.audit() only once per call for glob.glob(). (GH-18360)Serhiy Storchaka2020-02-061-1/+1
* bpo-37363: Add audit events for a range of modules (GH-14301)Steve Dower2019-06-241-0/+2
* Issue #27998: Removed workarounds for supporting bytes paths on Windows inSerhiy Storchaka2016-10-051-16/+7
* Issue #25596: Falls back to listdir in glob for bytes paths on Windows.Serhiy Storchaka2016-09-071-7/+16
* Issue #25596: Optimized glob() and iglob() functions in theSerhiy Storchaka2016-09-061-29/+41
* Issue #25584: Added "escape" to the __all__ list in the glob module.Serhiy Storchaka2015-11-091-1/+1
* Issue #25584: Fixed recursive glob() with patterns starting with '**'.Serhiy Storchaka2015-11-091-4/+9
* Issue #13968: The glob module now supports recursive search inSerhiy Storchaka2014-09-111-6/+50
* Issue #17923: glob() patterns ending with a slash no longer match non-dirs onSerhiy Storchaka2014-08-121-3/+8
* Issue #8402: Added the escape() function to the glob module.Serhiy Storchaka2013-11-181-2/+14
* Issue #16695: Document how glob handles filenames starting with a dotPetri Lehtinen2013-02-231-2/+8
|\
| * Issue #16695: Document how glob handles filenames starting with a dotPetri Lehtinen2013-02-231-2/+8
* | #16618: Make glob.glob match consistently across strings and bytesHynek Schlawack2012-12-271-2/+5
|\ \ | |/
| * #16618: Make glob.glob match consistently across strings and bytesHynek Schlawack2012-12-271-2/+5
* | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-1/+1
* | Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-161-1/+1
|\ \ | |/
| * Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-161-1/+1
* | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the patte...Antoine Pitrou2012-12-161-1/+4
|\ \ | |/
| * Issue #16626: Fix infinite recursion in glob.glob() on Windows when the patte...Antoine Pitrou2012-12-161-1/+4
* | Backed out changeset dafca4714298Tim Golden2012-11-061-47/+18
* | issue9584: Add {} list expansion to glob. Original patch by Mathieu BridonTim Golden2012-11-061-18/+47
* | utilize yield fromPhilip Jenvey2012-10-011-2/+1
|/
* Fix closes issue12432 - remove the unused sys from glob.pySenthil Kumaran2011-07-031-1/+0
* Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-...Benjamin Peterson2009-04-051-1/+1
* Issue #3187: Better support for "undecodable" filenames. Code by VictorGuido van Rossum2008-10-021-6/+11
* Fix build error.Alexandre Vassalotti2008-01-271-1/+1
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-2/+2
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-4/+8
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+1
* Patch #943206:Johannes Gijsbers2005-01-081-22/+40
* Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists i...Johannes Gijsbers2004-08-301-2/+2
* Patch #409973: Speedup glob.glob, add fnmatch.filter.Martin v. Löwis2001-06-061-7/+6
* more __all__ updatesSkip Montanaro2001-01-201-0/+1
* Whitespace normalization.Tim Peters2001-01-141-41/+41
* Convert all remaining *simple* cases of regex usage to re usage.Guido van Rossum1997-10-221-3/+3
* New doc strings.Guido van Rossum1997-04-021-1/+6
* Never return a non-existing pathname.Guido van Rossum1992-01-121-4/+13
* Use module 'os'Guido van Rossum1992-01-121-13/+10
* New == syntaxGuido van Rossum1992-01-011-2/+3
* path.cat --> joinGuido van Rossum1991-08-161-2/+2
* Initial revisionGuido van Rossum1991-01-011-0/+44