COMMITS
/ Lib/pathlib/_local.py October 17, 2025
B
GH-133789: Fix unpickling of pathlib objects pickled in Python 3.13 (#133831)
Barney Gale committed
March 7, 2025
B
GH-128520: Merge `pathlib._local` into `pathlib` (#130748)
Barney Gale committed
March 1, 2025
February 28, 2025
B
GH-116380: Speed up `glob.[i]glob()` by making fewer system calls. (#116392)
Barney Gale committed
B
GH-130608: Remove `dirs_exist_ok` argument from `pathlib.Path.copy()` (#130610)
Barney Gale committed
February 26, 2025
B
GH-125413: Add private `pathlib.Path` method to write metadata (#130238)
Barney Gale committed
February 24, 2025
B
GH-125413: Fix stale metadata from `pathlib.Path.copy()` and `move()` (#130424)
Barney Gale committed
February 21, 2025
B
GH-128520: More consistent type-checking behaviour in pathlib (#130199)
Barney Gale committed
February 17, 2025
B
GH-125413: Add private metadata methods to `pathlib.Path.info` (#129897)
Barney Gale committed
February 16, 2025
B
GH-128520: Subclass `abc.ABC` in `pathlib._abc` (#128745)
Barney Gale committed
February 9, 2025
B
GH-125413: Move `pathlib.Path.copy()` implementation alongside `Path.info` (#129856)
Barney Gale committed
February 8, 2025
B
GH-129835: Yield path with trailing slash from `ReadablePath.glob('')` (#129836)
Barney Gale committed
B
GH-125413: Add `pathlib.Path.info` attribute (#127730)
Barney Gale committed
January 28, 2025
B
GH-127381: pathlib ABCs: remove `JoinablePath.match()` (#129147)
Barney Gale committed
January 21, 2025
B
GH-128520: Make `pathlib._abc.WritablePath` a sibling of `ReadablePath` (#129014)
Barney Gale committed
January 11, 2025
B
GH-128520: Divide pathlib ABCs into three classes (#128523)
Barney Gale committed
January 4, 2025
B
GH-127381: pathlib ABCs: remove `PathBase.move()` and `move_into()` (#128337)
Barney Gale committed
December 29, 2024
B
GH-127381: pathlib ABCs: remove uncommon `PurePathBase` methods (#127853)
Barney Gale committed
B
GH-127381: pathlib ABCs: remove `PathBase.stat()` (#128334)
Barney Gale committed
December 22, 2024
B
GH-127807: pathlib ABCs: move private copying methods to dedicated class (#127810)
Barney Gale committed
B
GH-127807: pathlib ABCs: remove a few private attributes (#127851)
Barney Gale committed
B
GH-127807: pathlib ABCs: remove `PurePathBase._raw_paths` (#127883)
Barney Gale committed
December 12, 2024
B
GH-127807: pathlib ABCs: remove `PathBase._unsupported_msg()` (#127855)
Barney Gale committed
B
GH-127381: pathlib ABCs: remove remaining uncommon `PathBase` methods (#127714)
Barney Gale committed
December 11, 2024
B
GH-127381: pathlib ABCs: remove `PathBase.samefile()` and rarer `is_*()` (#127709)
Barney Gale committed
December 8, 2024
B
GH-127381: pathlib ABCs: remove `PathBase.unlink()` and `rmdir()` (#127736)
Barney Gale committed
December 6, 2024
B
GH-127381: pathlib ABCs: remove `PathBase.rename()` and `replace()` (#127658)
Barney Gale committed
December 5, 2024
B
GH-125413: Revert addition of `pathlib.Path.scandir()` method (#127377)
Barney Gale committed
November 30, 2024
B
GH-127381: pathlib ABCs: remove `PathBase.cwd()` and `home()` (#127427)
Barney Gale committed
November 29, 2024
B
GH-127381: pathlib ABCs: remove `PathBase.lstat()` (#127382)
Barney Gale committed
November 5, 2024
B
pathlib ABCs: defer path joining (#126409)
Barney Gale committed
November 4, 2024
B
GH-126363: Speed up pattern parsing in `pathlib.Path.glob()` (#126364)
Barney Gale committed
November 1, 2024
B
GH-125413: Add `pathlib.Path.scandir()` method (#126060)
Barney Gale committed
October 13, 2024
B
GH-125069: Fix inconsistent joining in `WindowsPath(PosixPath(...))` (#125156)
Barney Gale committed
September 2, 2024
B
GH-119518: Stop interning strings in pathlib GH-123356)
Barney Gale committed
September 1, 2024
D
gh-118761: Speedup pathlib import by deferring shutil (#123520)
Daniel Hollas committed
August 26, 2024
B
GH-73991: Make `pathlib.Path.delete()` private. (#123315)
Barney Gale committed
August 11, 2024
B
GH-73991: Rework `pathlib.Path.copytree()` into `copy()` (#122369)
Barney Gale committed
August 7, 2024
B
GH-73991: Rework `pathlib.Path.rmtree()` into `delete()` (#122368)
Barney Gale committed
July 20, 2024
B
GH-73991: Add `pathlib.Path.rmtree()` (#119060)
Barney Gale committed
July 6, 2024
B
GH-73991: Support preserving metadata in `pathlib.Path.copy()` (#120806)
Barney Gale committed
July 3, 2024
B
GH-73991: Support copying directory symlinks on older Windows (#120807)
Barney Gale committed
June 19, 2024
B
GH-73991: Add follow_symlinks argument to `pathlib.Path.copy()` (#120519)
Barney Gale committed
June 14, 2024
B
GH-73991: Add `pathlib.Path.copy()` (#119058)
Barney Gale committed
May 29, 2024
B
GH-119169: Implement `pathlib.Path.walk()` using `os.walk()` (#119573)
Barney Gale committed
May 25, 2024
B
GH-82805: Fix handling of single-dot file extensions in pathlib (#118952)
Barney Gale committed
May 17, 2024
K
gh-119049: Defer `import warnings` in `pathlib._local` (#119111)
Kirill Podoprigora committed
May 14, 2024
B
GH-74033: Drop deprecated `pathlib.Path` keyword arguments (#118793)
Barney Gale committed
B
GH-101357: Suppress `OSError` from `pathlib.Path.exists()` and `is_*()` (#118243)
Barney Gale committed
May 10, 2024
B
GH-78707: Drop deprecated `pathlib.PurePath.[is_]relative_to()` arguments (#118780)
Barney Gale committed