summaryrefslogtreecommitdiffstats
path: root/Lib/pathlib.py
Commit message (Expand)AuthorAgeFilesLines
* GH-102613: Improve performance of `pathlib.Path.rglob()` (GH-104244)Barney Gale2023-05-071-17/+37
* GH-89812: Churn `pathlib.Path` methods (GH-104243)Barney Gale2023-05-071-303/+303
* GH-103548: Improve performance of `pathlib.Path.[is_]absolute()` (GH-103549)Barney Gale2023-05-061-1/+10
* GH-100479: Add `pathlib.PurePath.with_segments()` (GH-103975)Barney Gale2023-05-051-30/+36
* GH-81079: Add case_sensitive argument to `pathlib.Path.glob()` (GH-102710)Barney Gale2023-05-041-15/+19
* GH-104114: Fix `pathlib.WindowsPath.glob()` use of literal pattern segment ca...Barney Gale2023-05-031-39/+13
* GH-89769: `pathlib.Path.glob()`: do not follow symlinks when checking for pre...andrei kulakov2023-05-031-3/+7
* GH-104102: Optimize `pathlib.Path.glob()` handling of `../` pattern segments ...Barney Gale2023-05-021-0/+12
* GH-104104: Optimize `pathlib.Path.glob()` by avoiding repeated calls to `os.p...Barney Gale2023-05-021-11/+14
* GH-103525: Improve exception message from `pathlib.PurePath()` (GH-103526)Barney Gale2023-05-021-14/+23
* GH-78079: Fix UNC device path root normalization in pathlib (GH-102003)Barney Gale2023-04-141-3/+8
* GH-101362: Omit path anchor from `pathlib.PurePath()._parts` (GH-102476)Barney Gale2023-04-091-65/+106
* GH-76846, GH-85281: Call `__new__()` and `__init__()` on pathlib subclasses (...Barney Gale2023-04-031-67/+78
* GH-89727: Fix pathlib.Path.walk RecursionError on deep trees (GH-100282)Stanislav Zmiev2023-03-221-38/+40
* GH-80486: Fix handling of NTFS alternate data streams in pathlib (GH-102454)Barney Gale2023-03-101-3/+5
* GH-101362: Optimise PurePath(PurePath(...)) (GH-101667)Barney Gale2023-03-051-25/+11
* GH-101362: Check pathlib.Path flavour compatibility at import time (GH-101664)Barney Gale2023-03-051-5/+11
* GH-101362: Call join() only when >1 argument supplied to pathlib.PurePath() (...Barney Gale2023-03-051-1/+4
* gh-100809: Fix handling of drive-relative paths in pathlib.Path.absolute() (G...Barney Gale2023-02-171-1/+6
* gh-101360: Fix anchor matching in pathlib.PureWindowsPath.match() (GH-101363)Barney Gale2023-02-171-5/+0
* gh-101000: Add os.path.splitroot() (#101002)Barney Gale2023-01-271-17/+7
* gh-74033: Fix bug when Path takes and ignores **kwargs (GH-19632)Yurii Karabas2023-01-141-0/+4
* gh-100562: improve performance of `pathlib.Path.absolute()` (GH-100563)Barney Gale2023-01-051-5/+7
* gh-68320, gh-88302 - Allow for private `pathlib.Path` subclassing (GH-31691)Barney Gale2022-12-231-202/+129
* gh-78707: deprecate passing >1 argument to `PurePath.[is_]relative_to()` (GH-...Barney Gale2022-12-171-8/+16
* gh-99029: Fix handling of `PureWindowsPath('C:\<blah>').relative_to('C:')` (G...Barney Gale2022-11-251-43/+13
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-0/+6
* gh-98832: Change wording in docstring of `pathlib.Path.iterdir` (GH-98833)Nikita Sobolev2022-11-091-2/+4
* gh-98884: [pathlib] remove `hasattr` check for `lru_cache` (#98885)Nikita Sobolev2022-11-031-3/+1
* gh-84538: add strict argument to pathlib.PurePath.relative_to (GH-19813)domragusa2022-10-281-15/+33
* gh-94909: fix joining of absolute and relative Windows paths in pathlib (GH-...Barney Gale2022-08-121-33/+8
* gh-86943: implement `pathlib.WindowsPath.is_mount()` (GH-31458)Barney Gale2022-08-051-19/+2
* gh-90385: Add `pathlib.Path.walk()` method (GH-92517)Stanislav Zmiev2022-07-221-0/+43
* gh-82116: add comment explaining use of `list(scandir_it)` in pathlib. (GH-94...Barney Gale2022-07-201-0/+4
* gh-93654: Add module docstring to pathlib (GH-94611)Samuel Sloniker2022-07-071-0/+7
* gh-81790: support "UNC" device paths in `ntpath.splitdrive()` (GH-91882)Barney Gale2022-06-101-64/+4
* gh-93156 - fix negative indexing into absolute `pathlib.PurePath().parents` (...Barney Gale2022-06-031-0/+2
* gh-92550: Fix pathlib.Path.rglob() for empty pattern (GH-92604)Serhiy Storchaka2022-05-111-1/+1
* Revert "gh-92550 - Fix regression in `pathlib.Path.rglob()` (GH-92583)" (GH-9...Serhiy Storchaka2022-05-111-0/+6
* gh-84131: Remove the deprecated pathlib.Path.link_to method. (#92505)Gregory P. Smith2022-05-101-17/+0
* gh-92550 - Fix regression in `pathlib.Path.rglob()` (GH-92583)Barney Gale2022-05-101-6/+0
* bpo-22276: Change pathlib.Path.glob not to ignore trailing path separator (GH...Eisuke Kawashima2022-04-281-0/+6
* bpo-46556: emit `DeprecationWarning` from `pathlib.Path.__enter__()` (GH-30971)Barney Gale2022-02-081-8/+11
* bpo-46483: Remove `__class_getitem__` from `pathlib.PurePath` (GH-30848)Nikita Sobolev2022-02-031-3/+0
* bpo-43012: remove `pathlib._Accessor` (GH-25701)Barney Gale2022-02-021-112/+59
* bpo-29688: document and test `pathlib.Path.absolute()` (GH-26153)Barney Gale2022-01-281-8/+3
* bpo-46483: change `PurePath.__class_getitem__` to return `GenericAlias` (GH-3...Nikita Sobolev2022-01-231-2/+2
* bpo-46316: optimize `pathlib.Path.iterdir()` (GH-30501)Barney Gale2022-01-201-3/+0
* bpo-45853: Fix misspelling and unused import in pathlib (GH-30292)andrei kulakov2021-12-301-3/+3
* bpo-27827: identify a greater range of reserved filename on Windows. (GH-26698)Barney Gale2021-07-281-11/+21