summaryrefslogtreecommitdiffstats
path: root/Lib/glob.py
Commit message (Expand)AuthorAgeFilesLines
* docs: be clearer that glob results are unordered (#140184)Ned Batchelder2025-10-191-0/+6
* GH-137466: Remove deprecated and undocumented `glob.glob0()` and `glob1()` (#...Barney Gale2025-08-061-15/+0
* GH-128520: pathlib ABCs: add `JoinablePath.__vfspath__()` (#133437)Barney Gale2025-05-121-18/+12
* gh-133306: Use \z instead of \Z in fnmatch.translate() and glob.translate() (...Serhiy Storchaka2025-05-031-1/+1
* GH-130614: pathlib ABCs: support alternate separator in `full_match()` (#130991)Barney Gale2025-03-091-4/+5
* Revert "GH-116380: Speed up `glob.[i]glob()` by making fewer system calls. (#...Barney Gale2025-03-011-167/+205
* GH-116380: Speed up `glob.[i]glob()` by making fewer system calls. (#116392)Barney Gale2025-02-281-205/+167
* GH-125413: pathlib ABCs: use caching `path.info.exists()` when globbing (#130...Barney Gale2025-02-241-1/+3
* GH-129835: Yield path with trailing slash from `ReadablePath.glob('')` (#129836)Barney Gale2025-02-081-27/+12
* GH-125413: Add `pathlib.Path.info` attribute (#127730)Barney Gale2025-02-081-17/+30
* gh-122288: Improve performances of `fnmatch.translate` (#122289)Bénédikt Tran2024-11-271-1/+1
* GH-125413: pathlib ABCs: use `scandir()` to speed up `glob()` (#126261)Barney Gale2024-11-011-9/+4
* GH-116380: Move pathlib-specific code from `glob` to `pathlib._abc`. (#120011)Barney Gale2024-06-071-12/+22
* GH-119169: Implement `pathlib.Path.walk()` using `os.walk()` (#119573)Barney Gale2024-05-291-37/+0
* GH-101357: Suppress `OSError` from `pathlib.Path.exists()` and `is_*()` (#118...Barney Gale2024-05-141-8/+4
* GH-116380: Revert move of pathlib globbing code to `pathlib._glob` (#118678)Barney Gale2024-05-071-1/+326
* GH-116380: Move pathlib globbing implementation into `pathlib._glob` (#118562)Barney Gale2024-05-031-303/+3
* GH-115060: Speed up `pathlib.Path.glob()` by not scanning literal parts (#117...Barney Gale2024-04-121-1/+21
* GH-117586: Speed up `pathlib.Path.walk()` by working with strings (#117726)Barney Gale2024-04-111-0/+37
* GH-117586: Speed up `pathlib.Path.glob()` by working with strings (#117589)Barney Gale2024-04-101-0/+186
* GH-117337: Deprecate `glob.glob0()` and `glob.glob1()`. (#117371)Barney Gale2024-04-011-1/+8
* gh-117134: Microoptimize glob() for include_hidden=True (GH-117135)Serhiy Storchaka2024-03-221-2/+2
* GH-116377: Stop raising `ValueError` from `glob.translate()`. (#116378)Barney Gale2024-03-171-19/+14
* gh-79382: Fix recursive glob() with trailing "**" (GH-115134)Serhiy Storchaka2024-02-111-1/+2
* GH-72904: Add `glob.translate()` function (#106703)Barney Gale2023-11-131-0/+60
* bpo-37578: glob.glob -- added include_hidden parameter (GH-30153)andrei kulakov2021-12-181-21/+35
* bpo-44482: Fix very unlikely resource leak in glob in non-CPython implementat...Serhiy Storchaka2021-06-231-2/+7
* bpo-43756: Add new audit event for new arguments added to glob.glob (GH-25239)Saiyang Gou2021-04-211-0/+1
* bpo-38144: Re-add accidentally removed audition for glob. (GH-22805)Serhiy Storchaka2020-10-201-0/+1
* bpo-38144: Add the root_dir and dir_fd parameters in glob.glob(). (GH-16075)Serhiy Storchaka2020-06-181-45/+102
* 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