summaryrefslogtreecommitdiffstats
path: root/Doc/library/pathlib.rst
Commit message (Expand)AuthorAgeFilesLines
* GH-124985: Document that `pathlib.Path.copy()` uses copy-on-write. (#125861)Barney Gale2024-11-051-0/+5
* GH-125413: Add `pathlib.Path.scandir()` method (#126060)Barney Gale2024-11-011-0/+29
* Python 3.14.0a1v3.14.0a1Hugo van Kemenade2024-10-151-2/+2
* gh-121277: Allow `.. versionadded:: next` in docs (GH-121278)Petr Viktorin2024-09-251-2/+2
* gh-123517: Remove unnecessary ``:meth:`` parentheses (#123518)Wei-Hsiang (Matt) Wang2024-09-011-5/+5
* GH-73991: Prune `pathlib.Path.copy()` and `copy_into()` arguments (#123337)Barney Gale2024-08-261-12/+2
* GH-73991: Make `pathlib.Path.delete()` private. (#123315)Barney Gale2024-08-261-37/+2
* GH-73991: Add `pathlib.Path.copy_into()` and `move_into()` (#123314)Barney Gale2024-08-261-0/+21
* GH-73991: Add `pathlib.Path.move()` (#122073)Barney Gale2024-08-251-2/+19
* GH-73991: Rework `pathlib.Path.copytree()` into `copy()` (#122369)Barney Gale2024-08-111-35/+18
* GH-120794: Use example paths with multiple parts in pathlib docs (#122887)Barney Gale2024-08-101-8/+8
* GH-73991: Rework `pathlib.Path.rmtree()` into `delete()` (#122368)Barney Gale2024-08-071-21/+28
* GH-121462: pathlib docs: improve table of corresponding os/os.path functions ...Barney Gale2024-07-271-36/+51
* Docs: spelling and grammar fixes (#122084)Ville Skyttä2024-07-221-1/+1
* GH-73991: Support preserving metadata in `pathlib.Path.copytree()` (#121438)Barney Gale2024-07-201-1/+9
* GH-73991: Add `pathlib.Path.rmtree()` (#119060)Barney Gale2024-07-201-0/+28
* GH-73991: Support preserving metadata in `pathlib.Path.copy()` (#120806)Barney Gale2024-07-061-6/+6
* GH-73991: Support copying directory symlinks on older Windows (#120807)Barney Gale2024-07-031-5/+0
* GH-119054: Add alt text to pathlib inheritance diagram (#121158)Barney Gale2024-06-291-0/+6
* GH-119054: Add "Expanding and resolving paths" section to pathlib docs. (#120...Barney Gale2024-06-291-101/+101
* GH-119054: Add "Permissions and ownership" section to pathlib docs. (#120505)Barney Gale2024-06-241-47/+51
* GH-73991: Add `pathlib.Path.copytree()` (#120718)Barney Gale2024-06-231-0/+27
* GH-73991: Add follow_symlinks argument to `pathlib.Path.copy()` (#120519)Barney Gale2024-06-191-1/+10
* GH-73991: Add `pathlib.Path.copy()` (#119058)Barney Gale2024-06-141-2/+16
* GH-119054: Add "Renaming and deleting" section to pathlib docs. (#120465)Barney Gale2024-06-131-60/+64
* GH-119054: Add "Creating files and directories" section to pathlib docs. (#12...Barney Gale2024-06-131-79/+86
* GH-119054: Add "Reading directories" section to pathlib docs (#119956)Barney Gale2024-06-061-95/+102
* GH-119054: Add "Reading and writing files" section to pathlib docs (#119524)Barney Gale2024-06-021-79/+84
* GH-82805: Fix handling of single-dot file extensions in pathlib (#118952)Barney Gale2024-05-251-0/+13
* GH-119054: Add "Querying file type and status" section to pathlib docs (#119055)Barney Gale2024-05-241-167/+171
* GH-101357: Suppress `OSError` from `pathlib.Path.exists()` and `is_*()` (#118...Barney Gale2024-05-141-35/+40
* Format None, True, False and NotImplemented as literals (GH-118758)Serhiy Storchaka2024-05-081-2/+2
* docs: module page titles should not start with a link to themselves (#117099)Ned Batchelder2024-05-081-3/+2
* GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831)Barney Gale2024-04-131-4/+5
* GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311)Barney Gale2024-04-051-13/+8
* GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513)Barney Gale2024-03-311-2/+2
* GH-106747: Document another difference between `glob` and `pathlib`. (#116518)Barney Gale2024-03-221-0/+4
* GH-113838: Add "Comparison to os.path" section to pathlib docs (#115926)Barney Gale2024-03-151-19/+44
* Docs: fix broken links (#116651)Mariusz Felisiak2024-03-131-1/+1
* GH-101112: Add "pattern language" section to pathlib docs (#114030)Barney Gale2024-02-261-56/+103
* GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#...Barney Gale2024-01-301-3/+2
* gh-88569: add `ntpath.isreserved()` (#95486)Barney Gale2024-01-261-7/+6
* GH-73435: Add `pathlib.PurePath.full_match()` (#114350)Barney Gale2024-01-261-30/+30
* GH-105900: Fix `pathlib.Path.symlink_to(target_is_directory=...)` docs (#114035)Barney Gale2024-01-231-3/+7
* GH-82695: Clarify `pathlib.Path.mkdir()` documentation (#114032)Barney Gale2024-01-231-3/+3
* GH-99334: Explain that `PurePath.is_relative_to()` is purely lexical. (#114031)Barney Gale2024-01-231-0/+7
* GH-79634: Accept path-like objects as pathlib glob patterns. (#114017)Barney Gale2024-01-201-0/+6
* GH-110109: pathlib docs: bring `from_uri()` and `as_uri()` together. (#110312)Barney Gale2024-01-161-49/+61
* GH-78988: Document `pathlib.Path.glob()` exception propagation. (#114036)Barney Gale2024-01-161-0/+4
* gh-112758: Updated pathlib documentation for PurePath.match (#112814)Taylor Packard2023-12-081-0/+3