summaryrefslogtreecommitdiffstats
path: root/Lib/pathlib.py
Commit message (Expand)AuthorAgeFilesLines
* GH-110109: Move pathlib ABCs to new `pathlib._abc` module. (#112881)Barney Gale2023-12-091-1650/+0
* GH-110109: Add `pathlib._PurePathBase` (#110670)Barney Gale2023-12-081-36/+47
* GH-112727: Speed up `pathlib.Path.absolute()` (#112728)Barney Gale2023-12-041-6/+14
* gh-103363: Add follow_symlinks argument to `pathlib.Path.owner()` and `group(...Kamil Turek2023-12-041-6/+8
* gh-112405: Optimise `pathlib.Path.relative_to` (#112406)Alex Waygood2023-11-261-1/+2
* GH-77621: Delay some imports from pathlib (#112244)Barney Gale2023-11-251-5/+9
* GH-112361: Speed up pathlib by removing some temporary objects. (#112362)Barney Gale2023-11-251-20/+12
* gh-110745: add a newline argument to pathlib.Path.read_text (#110880)Junya Okabe2023-11-211-2/+2
* GH-110109: Speed up `pathlib._PathBase.resolve()` (#110412)Barney Gale2023-11-171-22/+17
* GH-110109: Churn `pathlib.PurePath` methods (#112012)Barney Gale2023-11-171-120/+120
* GH-72904: Add `glob.translate()` function (#106703)Barney Gale2023-11-131-104/+21
* GH-111429: Speed up `pathlib.PurePath.[is_]relative_to()` (#111431)Barney Gale2023-11-121-4/+8
* gh-111259: Optimize recursive wildcards in pathlib (GH-111303)Serhiy Storchaka2023-10-261-3/+3
* GH-110488: Fix two small issues in `pathlib.PurePath.with_name()` (#110651)Barney Gale2023-10-111-2/+1
* GH-107465: Add `pathlib.Path.from_uri()` classmethod. (#107640)Barney Gale2023-10-011-5/+35
* GH-89812: Add `pathlib._PathBase` (#106337)Barney Gale2023-09-301-87/+359
* GH-109187: Improve symlink loop handling in `pathlib.Path.resolve()` (GH-109192)Barney Gale2023-09-261-20/+1
* GH-78722: Raise exceptions from `pathlib.Path.iterdir()` without delay. (#107...Barney Gale2023-09-021-2/+1
* GH-70303: Emit FutureWarning when pathlib glob pattern ends with `**` (GH-105...Barney Gale2023-08-041-0/+5
* gh-105002: [pathlib] Fix relative_to with walk_up=True using ".." (#107014)János Kukovecz2023-07-261-2/+4
* GH-100502: Add `pathlib.PurePath.pathmod` attribute (GH-106533)Barney Gale2023-07-191-42/+42
* GH-106330: Fix matching of empty path in `pathlib.PurePath.match()` (GH-106331)Barney Gale2023-07-031-2/+6
* GH-105793: Add follow_symlinks argument to `pathlib.Path.is_dir()` and `is_fi...Barney Gale2023-06-261-4/+4
* GH-89812: Add `pathlib.UnsupportedOperation` (GH-105926)Barney Gale2023-06-221-7/+15
* GH-104996: Defer joining of `pathlib.PurePath()` arguments. (GH-104999)Barney Gale2023-06-071-17/+27
* GH-102613: Fast recursive globbing in `pathlib.Path.glob()` (GH-104512)Barney Gale2023-06-061-136/+133
* GH-73435: Implement recursive wildcards in `pathlib.PurePath.match()` (#101398)Barney Gale2023-05-301-14/+85
* GH-104898: Revert pathlib os.PathLike registration change. (GH-105073)Barney Gale2023-05-291-1/+5
* GH-77609: Add follow_symlinks argument to `pathlib.Path.glob()` (GH-102616)Barney Gale2023-05-291-19/+21
* GH-103631: Fix `PurePosixPath(PureWindowsPath(...))` separator handling (GH-1...Barney Gale2023-05-261-0/+3
* GH-104947: Make pathlib.PureWindowsPath comparisons consistent across platfor...Barney Gale2023-05-261-1/+4
* GH-104898: Add __slots__ to os.PathLike (GH-104899)Barney Gale2023-05-251-5/+1
* GH-83863: Drop support for using `pathlib.Path` objects as context managers (...Barney Gale2023-05-231-19/+0
* GH-104484: Add case_sensitive argument to `pathlib.PurePath.match()` (GH-104565)thirumurugan2023-05-181-6/+14
* GH-102613: Fix recursion error from `pathlib.Path.glob()` (GH-104373)Barney Gale2023-05-151-20/+5
* GH-90208: Suppress OSError exceptions from `pathlib.Path.glob()` (GH-104141)Barney Gale2023-05-111-20/+13
* GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292)Barney Gale2023-05-101-2/+2
* 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