COMMITS
/ Doc/library/pathlib.rst May 16, 2025
A
gh-133286: add explanation about `seq` for pathlib Pattern Language (#133340)
alexey semenyuk committed
May 6, 2025
H
Python 3.14.0b1
Hugo van Kemenade committed
May 5, 2025
B
GH-123599: `url2pathname()`: don't call `gethostbyname()` by default (#132610)
Barney Gale committed
April 10, 2025
B
GH-123599: `url2pathname()`: handle authority section in file URL (#126844)
Barney Gale committed
March 20, 2025
B
GH-123599: Deprecate duplicate `pathname2url()` implementation (#127380)
Barney Gale committed
February 28, 2025
B
GH-130608: Remove `dirs_exist_ok` argument from `pathlib.Path.copy()` (#130610)
Barney Gale committed
February 8, 2025
B
GH-125413: Add `pathlib.Path.info` attribute (#127730)
Barney Gale committed
December 5, 2024
B
GH-125413: Revert addition of `pathlib.Path.scandir()` method (#127377)
Barney Gale committed
November 5, 2024
B
GH-124985: Document that `pathlib.Path.copy()` uses copy-on-write. (#125861)
Barney Gale committed
November 1, 2024
B
GH-125413: Add `pathlib.Path.scandir()` method (#126060)
Barney Gale committed
October 15, 2024
H
Python 3.14.0a1
Hugo van Kemenade committed
September 25, 2024
P
gh-121277: Allow `.. versionadded:: next` in docs (GH-121278)
Petr Viktorin committed
September 1, 2024
W
gh-123517: Remove unnecessary ``:meth:`` parentheses (#123518)
Wei-Hsiang (Matt) Wang committed
August 26, 2024
B
GH-73991: Prune `pathlib.Path.copy()` and `copy_into()` arguments (#123337)
Barney Gale committed
B
GH-73991: Make `pathlib.Path.delete()` private. (#123315)
Barney Gale committed
B
GH-73991: Add `pathlib.Path.copy_into()` and `move_into()` (#123314)
Barney Gale committed
August 25, 2024
B
GH-73991: Add `pathlib.Path.move()` (#122073)
Barney Gale committed
August 11, 2024
B
GH-73991: Rework `pathlib.Path.copytree()` into `copy()` (#122369)
Barney Gale committed
August 10, 2024
B
GH-120794: Use example paths with multiple parts in pathlib docs (#122887)
Barney Gale committed
August 7, 2024
B
GH-73991: Rework `pathlib.Path.rmtree()` into `delete()` (#122368)
Barney Gale committed
July 27, 2024
B
GH-121462: pathlib docs: improve table of corresponding os/os.path functions (#121465)
Barney Gale committed
July 22, 2024
V
Docs: spelling and grammar fixes (#122084)
Ville Skyttä committed
July 20, 2024
B
GH-73991: Support preserving metadata in `pathlib.Path.copytree()` (#121438)
Barney Gale committed
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 29, 2024
B
GH-119054: Add alt text to pathlib inheritance diagram (#121158)
Barney Gale committed
B
GH-119054: Add "Expanding and resolving paths" section to pathlib docs. (#120970)
Barney Gale committed
June 24, 2024
B
GH-119054: Add "Permissions and ownership" section to pathlib docs. (#120505)
Barney Gale committed
June 23, 2024
B
GH-73991: Add `pathlib.Path.copytree()` (#120718)
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
June 13, 2024
B
GH-119054: Add "Renaming and deleting" section to pathlib docs. (#120465)
Barney Gale committed
B
GH-119054: Add "Creating files and directories" section to pathlib docs. (#120186)
Barney Gale committed
June 6, 2024
B
GH-119054: Add "Reading directories" section to pathlib docs (#119956)
Barney Gale committed
June 2, 2024
B
GH-119054: Add "Reading and writing files" section to pathlib docs (#119524)
Barney Gale committed
May 25, 2024
B
GH-82805: Fix handling of single-dot file extensions in pathlib (#118952)
Barney Gale committed
May 24, 2024
B
GH-119054: Add "Querying file type and status" section to pathlib docs (#119055)
Barney Gale committed
May 14, 2024
B
GH-101357: Suppress `OSError` from `pathlib.Path.exists()` and `is_*()` (#118243)
Barney Gale committed
May 8, 2024
S
Format None, True, False and NotImplemented as literals (GH-118758)
Serhiy Storchaka committed
N
docs: module page titles should not start with a link to themselves (#117099)
Ned Batchelder committed
April 13, 2024
B
GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831)
Barney Gale committed
April 5, 2024
B
GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311)
Barney Gale committed
March 31, 2024
B
GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513)
Barney Gale committed
March 22, 2024
B
GH-106747: Document another difference between `glob` and `pathlib`. (#116518)
Barney Gale committed
March 15, 2024
B
GH-113838: Add "Comparison to os.path" section to pathlib docs (#115926)
Barney Gale committed
March 13, 2024
M
Docs: fix broken links (#116651)
Mariusz Felisiak committed
February 26, 2024
B
GH-101112: Add "pattern language" section to pathlib docs (#114030)
Barney Gale committed
January 30, 2024
B
GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#114684)
Barney Gale committed
January 26, 2024
B
gh-88569: add `ntpath.isreserved()` (#95486)
Barney Gale committed