summaryrefslogtreecommitdiffstats
path: root/Lib/pathlib/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* GH-139174: Prepare `pathlib.Path.info` for new methods (part 2) (#140155)Barney Gale2025-10-181-96/+60
* gh-139001: Fix thread-safety issue in `pathlib.Path` (gh-139066)Sam Gross2025-10-101-6/+1
* pathlib ABCs: restore `relative_to()` and `is_relative_to()` (#138853)Barney Gale2025-10-101-2/+5
* GH-139174: Prepare `pathlib.Path.info` for new methods (#139175)Barney Gale2025-09-241-9/+251
* GH-128520: pathlib ABCs: improve protocol for 'openable' objects (#134101)Barney Gale2025-09-121-2/+2
* GH-128520: pathlib ABCs: tweak protocol for virtual path strings (#134104)Barney Gale2025-07-271-3/+3
* gh-133875: Remove deprecated `pathlib.PurePath.is_reserved` (#133876)sobolevn2025-07-191-12/+0
* GH-128520: pathlib ABCs: add `JoinablePath.__vfspath__()` (#133437)Barney Gale2025-05-121-3/+4
* GH-125866: Support complete "file:" URLs in urllib (#132378)Barney Gale2025-04-141-4/+2
* GH-123599: `url2pathname()`: handle authority section in file URL (#126844)Barney Gale2025-04-101-1/+5
* GH-128520: pathlib ABCs: tighten up argument types (#131621)Barney Gale2025-03-241-5/+1
* GH-123599: Deprecate duplicate `pathname2url()` implementation (#127380)Barney Gale2025-03-201-1/+12
* GH-123599: Remove duplicate `url2pathname()` implementation (#127237)Barney Gale2025-03-191-15/+2
* GH-130614: pathlib ABCs: improve support for receiving path metadata (#131259)Barney Gale2025-03-161-13/+61
* GH-128520: Merge `pathlib._local` into `pathlib` (#130748)Barney Gale2025-03-071-2/+1260
* GH-127807: pathlib ABCs: remove `PathBase._unsupported_msg()` (#127855)Barney Gale2024-12-121-3/+1
* GH-73991: Rework `pathlib.Path.copytree()` into `copy()` (#122369)Barney Gale2024-08-111-3/+3
* GH-73991: Support copying directory symlinks on older Windows (#120807)Barney Gale2024-07-031-2/+2
* Move pathlib implementation out of `__init__.py` (#118582)Barney Gale2024-05-051-861/+4
* GH-116380: Move pathlib globbing implementation into `pathlib._glob` (#118562)Barney Gale2024-05-031-3/+2
* docs: typo: tiny grammar change: "pointed by" -> "pointed to by" (#118411)Andrew Zipperer2024-05-021-1/+1
* GH-112855: Speed up `pathlib.PurePath` pickling (#112856)Barney Gale2024-04-201-3/+1
* GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831)Barney Gale2024-04-131-3/+1
* GH-117727: Speed up `pathlib.Path.iterdir()` by using `os.scandir()` (#117728)Barney Gale2024-04-121-20/+6
* GH-117586: Speed up `pathlib.Path.walk()` by working with strings (#117726)Barney Gale2024-04-111-14/+6
* GH-117586: Speed up `pathlib.Path.glob()` by working with strings (#117589)Barney Gale2024-04-101-30/+47
* GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311)Barney Gale2024-04-051-4/+4
* GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513)Barney Gale2024-03-311-27/+27
* GH-115060: Speed up `pathlib.Path.glob()` by removing redundant regex matchin...Barney Gale2024-02-101-2/+6
* pathlib ABCs: raise `UnsupportedOperation` directly. (#114776)Barney Gale2024-01-311-3/+2
* GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#...Barney Gale2024-01-301-8/+0
* gh-88569: add `ntpath.isreserved()` (#95486)Barney Gale2024-01-261-21/+7
* GH-73435: Add `pathlib.PurePath.full_match()` (#114350)Barney Gale2024-01-261-0/+7
* GH-79634: Accept path-like objects as pathlib glob patterns. (#114017)Barney Gale2024-01-201-18/+31
* Add `pathlib._abc.PathModuleBase` (#113893)Barney Gale2024-01-141-0/+60
* pathlib ABCs: add `_raw_path` property (#113976)Barney Gale2024-01-131-5/+7
* GH-113528: Deoptimise `pathlib._abc.PurePathBase` (#113559)Barney Gale2024-01-091-1/+103
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.relative_to()` (again) (#113...Barney Gale2024-01-091-5/+17
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.parts` (#113883)Barney Gale2024-01-091-0/+9
* GH-113528: Deoptimise `pathlib._abc.PathBase._make_child_relpath()` (#113532)Barney Gale2024-01-091-0/+16
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.relative_to()` (#113529)Barney Gale2024-01-061-1/+4
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.parent` (#113530)Barney Gale2024-01-061-1/+47
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.name` (#113531)Barney Gale2024-01-061-0/+19
* GH-113568: Stop raising deprecation warnings from pathlib ABCs (#113757)Barney Gale2024-01-051-0/+27
* GH-113568: Stop raising auditing events from pathlib ABCs (#113571)Barney Gale2024-01-051-1/+42
* GH-113225: Speed up `pathlib.Path.glob()` (#113226)Barney Gale2024-01-041-1/+7
* GH-113225: Speed up `pathlib._abc.PathBase.glob()` (#113556)Barney Gale2023-12-281-0/+4
* GH-110109: pathlib ABCs: drop use of `io.text_encoding()` (#113417)Barney Gale2023-12-271-0/+18
* GH-110109: pathlib ABCs: do not vary path syntax by host OS. (#113219)Barney Gale2023-12-221-0/+1
* GH-110109: Fix misleading `pathlib._abc.PurePathBase` repr (#113376)Barney Gale2023-12-221-0/+3