summaryrefslogtreecommitdiffstats
path: root/Doc/library/pathlib.rst
Commit message (Expand)AuthorAgeFilesLines
* GH-89769: `pathlib.Path.glob()`: do not follow symlinks when checking for pre...andrei kulakov2023-05-031-6/+9
* GH-101362: Optimise PurePath(PurePath(...)) (GH-101667)Barney Gale2023-03-051-2/+3
* GH-101898: Fix missing term references for hashable definition (#101899)Furkan Onder2023-02-141-1/+1
* gh-86610: Use attribute directive in docs for pathlib.PurePath (#101114)Barney Gale2023-01-201-14/+14
* GH-101112: Specify type of pattern for Path.rglob (#101132)Jürgen Gmach2023-01-201-1/+2
* gh-87691: clarify use of anchor in pathlib docs (#100782)Shantanu2023-01-061-8/+8
* gh-87691: add an absolute path pathlib example in / operator docs (GH-100737)Shantanu2023-01-051-1/+8
* gh-78707: deprecate passing >1 argument to `PurePath.[is_]relative_to()` (GH-...Barney Gale2022-12-171-3/+11
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-0/+8
* gh-98240: Updated Path.rename docs, when it is atomic (GH-98245)Mateusz2022-10-281-0/+2
* gh-84538: add strict argument to pathlib.PurePath.relative_to (GH-19813)domragusa2022-10-281-6/+28
* Doc: Found some remaining default roles. (GH-98392)Julien Palard2022-10-181-1/+1
* Fix documentation typo for pathlib.Path.walk (GH-96301)Ansab Gillani2022-08-261-1/+1
* gh-86943: implement `pathlib.WindowsPath.is_mount()` (GH-31458)Barney Gale2022-08-051-1/+6
* gh-90385: Add `pathlib.Path.walk()` method (GH-92517)Stanislav Zmiev2022-07-221-0/+96
* docs: use 'recursively' in the description of rglob, and mention globs in the...Ned Batchelder2022-07-201-2/+2
* Add additional pointers to pathlib's mapping to os.path functions (#94828)Chris Adams2022-07-151-1/+2
* gh-93851: Fix all broken links in Doc/ (GH-93853)Oleg Iarygin2022-06-211-3/+2
* gh-91317: Document that Path does not collapse initial `//` (GH-32193)Oleg Iarygin2022-06-101-3/+30
* Fix `PurePath.relative_to` links in the pathlib documentation. (GH-93268)jacksonriley2022-06-071-2/+2
* Fix a directive in the `pathlib` docs (GH-93030)Brett Cannon2022-05-201-1/+1
* gh-72073: Add Windows case in pathlib.rename (GH-93002)Stanley2022-05-201-2/+3
* Revert "gh-92550 - Fix regression in `pathlib.Path.rglob()` (GH-92583)" (GH-9...Serhiy Storchaka2022-05-111-0/+6
* gh-84131: Remove the deprecated pathlib.Path.link_to method. (#92505)Gregory P. Smith2022-05-101-19/+0
* gh-92550 - Fix regression in `pathlib.Path.rglob()` (GH-92583)Barney Gale2022-05-101-6/+0
* bpo-22276: Change pathlib.Path.glob not to ignore trailing path separator (GH...Eisuke Kawashima2022-04-281-0/+6
* gh-84459: Make wording more specific for Path.replace (GH-91853)slateny2022-04-271-1/+1
* Fix typo in Path.iterdir docs (GH-31822)Matt Williams2022-03-231-1/+1
* bpo-29688: document and test `pathlib.Path.absolute()` (GH-26153)Barney Gale2022-01-281-3/+16
* bpo-39950: add `pathlib.Path.hardlink_to()` method that supersedes `link_to()...Barney Gale2021-04-231-3/+18
* docs: clarify what patterns Path.glob accepts (GH-25486)Ned Batchelder2021-04-201-2/+3
* bpo-39899: os.path.expanduser(): don't guess other Windows users' home direct...Barney Gale2021-04-071-2/+8
* bpo-42999: Expand and clarify pathlib.Path.link_to() documentation. (GH-24294)Barney Gale2021-04-071-7/+14
* bpo-39906: Add follow_symlinks parameter to pathlib.Path.stat() and chmod() (...Barney Gale2021-04-071-3/+16
* Doc: os.path.abspath and Path.resolve are also different (GH-23276)Hong Xu2021-01-201-5/+12
* Added support for negative indexes to PurePath.parents (GH-21799)Yaroslav Pankovych2020-11-231-1/+1
* bpo-35498: Added slice support to PathLib parents attribute. (GH-11165)Joshua Cannon2020-11-201-0/+2
* bpo-23706: Add newline parameter to pathlib.Path.write_text (GH-22420) (GH-22...Максим2020-10-211-1/+4
* bpo-40833: Clarify Path.rename doc-string regarding relative paths (GH-20554)Ram Rachum2020-10-031-0/+8
* bpo-40486: Specify what happens if directory content change diring iteration ...Serhiy Storchaka2020-09-041-0/+5
* Fixed comment about pathlib.link_to: it was added in 3.8, not changed. (#21851)Facundo Batista2020-08-131-1/+1
* bpo-41066: Update the comparison section for os vs pathlib (GH-21261)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2020-08-131-0/+3
* bpo-23082: Better error message for PurePath.relative_to() from pathlib (GH-1...Rotuna2020-05-251-1/+3
* bpo-39470: Indicate that ``os.makedirs`` is equivalent to ``Path.mkdir`` (GH-...Joannah Nanjekye2020-05-041-0/+1
* bpo-40148: Add PurePath.with_stem() (GH-19295)Tim Hoffmann2020-04-191-0/+24
* bpo-39285: Clarify example for PurePath.match (GH-19458)Tim Lo2020-04-191-1/+3
* bpo-39567: Document audit for os.walk, os.fwalk, Path.glob and Path.rglob. (G...Serhiy Storchaka2020-03-081-0/+4
* bpo-39808: Improve docs for pathlib.Path.stat() (GH-18719)Brett Cannon2020-03-041-1/+1
* bpo-30618: add readlink to pathlib.Path (GH-8285)Girts2019-10-231-0/+14
* bpo-36182: Update pathlib.Path.write_text() docs (GH-12161)Lysandros Nikolaou2019-09-111-0/+3