summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pathlib.py
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-105002: [pathlib] Fix relative_to with walk_up=True using ".." (GH-...Miss Islington (bot)2023-07-261-0/+12
* [3.12] GH-106330: Fix matching of empty path in `pathlib.PurePath.match()` (G...Barney Gale2023-07-041-0/+4
* [3.12] gh-102613: Bump recursion limit to fix running test_pathlib under Cove...Miss Islington (bot)2023-06-131-1/+1
* [3.12] GH-103631: Fix `PurePosixPath(PureWindowsPath(...))` separator handlin...Miss Islington (bot)2023-05-261-0/+6
* [3.12] GH-104947: Make pathlib.PureWindowsPath comparisons consistent across ...Miss Islington (bot)2023-05-261-0/+1
* GH-104484: Add case_sensitive argument to `pathlib.PurePath.match()` (GH-104565)thirumurugan2023-05-181-1/+6
* GH-102613: Fix recursion error from `pathlib.Path.glob()` (GH-104373)Barney Gale2023-05-151-0/+11
* GH-90208: Suppress OSError exceptions from `pathlib.Path.glob()` (GH-104141)Barney Gale2023-05-111-26/+12
* GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292)Barney Gale2023-05-101-0/+9
* GH-102613: Improve performance of `pathlib.Path.rglob()` (GH-104244)Barney Gale2023-05-071-1/+5
* GH-100479: Fix pathlib test failure on WASI (#104215)Barney Gale2023-05-071-1/+2
* GH-100479: Add `pathlib.PurePath.with_segments()` (GH-103975)Barney Gale2023-05-051-15/+37
* GH-81079: Add case_sensitive argument to `pathlib.Path.glob()` (GH-102710)Barney Gale2023-05-041-0/+12
* GH-104114: Fix `pathlib.WindowsPath.glob()` use of literal pattern segment ca...Barney Gale2023-05-031-2/+2
* GH-89769: `pathlib.Path.glob()`: do not follow symlinks when checking for pre...andrei kulakov2023-05-031-0/+4
* GH-104102: Optimize `pathlib.Path.glob()` handling of `../` pattern segments ...Barney Gale2023-05-021-0/+5
* GH-103525: Improve exception message from `pathlib.PurePath()` (GH-103526)Barney Gale2023-05-021-2/+2
* GH-103517: Improve tests for `pathlib.Path.walk()` (GH-103518)Barney Gale2023-04-151-32/+45
* GH-78079: Fix UNC device path root normalization in pathlib (GH-102003)Barney Gale2023-04-141-0/+24
* GH-101362: Omit path anchor from `pathlib.PurePath()._parts` (GH-102476)Barney Gale2023-04-091-2/+0
* GH-103379: Fix up old tests for `pathlib.PurePath._parse_path` (GH-103380)Barney Gale2023-04-091-110/+97
* GH-76846, GH-85281: Call `__new__()` and `__init__()` on pathlib subclasses (...Barney Gale2023-04-031-1/+26
* GH-89727: Fix pathlib.Path.walk RecursionError on deep trees (GH-100282)Stanislav Zmiev2023-03-221-0/+13
* GH-80486: Fix handling of NTFS alternate data streams in pathlib (GH-102454)Barney Gale2023-03-101-1/+27
* Remove or update bitbucket links (GH-101963)sblondon2023-03-081-1/+1
* GH-101362: Optimise PurePath(PurePath(...)) (GH-101667)Barney Gale2023-03-051-0/+27
* gh-100809: Fix handling of drive-relative paths in pathlib.Path.absolute() (G...Barney Gale2023-02-171-0/+20
* gh-101360: Fix anchor matching in pathlib.PureWindowsPath.match() (GH-101363)Barney Gale2023-02-171-3/+6
* gh-101000: Add os.path.splitroot() (#101002)Barney Gale2023-01-271-37/+0
* gh-74033: Fix bug when Path takes and ignores **kwargs (GH-19632)Yurii Karabas2023-01-141-0/+5
* gh-68320, gh-88302 - Allow for private `pathlib.Path` subclassing (GH-31691)Barney Gale2022-12-231-30/+47
* gh-78707: deprecate passing >1 argument to `PurePath.[is_]relative_to()` (GH-...Barney Gale2022-12-171-3/+5
* gh-99029: Fix handling of `PureWindowsPath('C:\<blah>').relative_to('C:')` (G...Barney Gale2022-11-251-9/+5
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-0/+7
* gh-84538: add strict argument to pathlib.PurePath.relative_to (GH-19813)domragusa2022-10-281-0/+82
* gh-94909: fix joining of absolute and relative Windows paths in pathlib (GH-...Barney Gale2022-08-121-0/+4
* gh-86943: implement `pathlib.WindowsPath.is_mount()` (GH-31458)Barney Gale2022-08-051-4/+5
* gh-90385: Add skip_unless_symlink decorator to test_walk_symlink_location (GH...Christian Heimes2022-07-231-0/+1
* gh-90385: Add `pathlib.Path.walk()` method (GH-92517)Stanislav Zmiev2022-07-221-0/+197
* gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)Christian Heimes2022-06-061-0/+3
* gh-93156 - fix negative indexing into absolute `pathlib.PurePath().parents` (...Barney Gale2022-06-031-0/+5
* gh-90473: Skip and document more failing tests on WASI (GH-93436)Christian Heimes2022-06-021-0/+3
* gh-90473: Misc test fixes for WASI (GH-93218)Christian Heimes2022-05-251-3/+6
* gh-92550: Fix pathlib.Path.rglob() for empty pattern (GH-92604)Serhiy Storchaka2022-05-111-0/+5
* Revert "gh-92550 - Fix regression in `pathlib.Path.rglob()` (GH-92583)" (GH-9...Serhiy Storchaka2022-05-111-0/+17
* gh-84131: Remove the deprecated pathlib.Path.link_to method. (#92505)Gregory P. Smith2022-05-101-23/+1
* gh-92550 - Fix regression in `pathlib.Path.rglob()` (GH-92583)Barney Gale2022-05-101-17/+0
* bpo-22276: Change pathlib.Path.glob not to ignore trailing path separator (GH...Eisuke Kawashima2022-04-281-0/+17
* gh-91616: re module, fix .fullmatch() mismatch when using Atomic Grouping or ...Ma Lin2022-04-191-1/+8
* bpo-40280: Skip more tests/features that don't apply to Emscripten (GH-31791)Christian Heimes2022-03-101-0/+11