index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_pathlib.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.12] gh-105002: [pathlib] Fix relative_to with walk_up=True using ".." (GH-...
Miss Islington (bot)
2023-07-26
1
-0/+12
*
[3.12] GH-106330: Fix matching of empty path in `pathlib.PurePath.match()` (G...
Barney Gale
2023-07-04
1
-0/+4
*
[3.12] gh-102613: Bump recursion limit to fix running test_pathlib under Cove...
Miss Islington (bot)
2023-06-13
1
-1/+1
*
[3.12] GH-103631: Fix `PurePosixPath(PureWindowsPath(...))` separator handlin...
Miss Islington (bot)
2023-05-26
1
-0/+6
*
[3.12] GH-104947: Make pathlib.PureWindowsPath comparisons consistent across ...
Miss Islington (bot)
2023-05-26
1
-0/+1
*
GH-104484: Add case_sensitive argument to `pathlib.PurePath.match()` (GH-104565)
thirumurugan
2023-05-18
1
-1/+6
*
GH-102613: Fix recursion error from `pathlib.Path.glob()` (GH-104373)
Barney Gale
2023-05-15
1
-0/+11
*
GH-90208: Suppress OSError exceptions from `pathlib.Path.glob()` (GH-104141)
Barney Gale
2023-05-11
1
-26/+12
*
GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292)
Barney Gale
2023-05-10
1
-0/+9
*
GH-102613: Improve performance of `pathlib.Path.rglob()` (GH-104244)
Barney Gale
2023-05-07
1
-1/+5
*
GH-100479: Fix pathlib test failure on WASI (#104215)
Barney Gale
2023-05-07
1
-1/+2
*
GH-100479: Add `pathlib.PurePath.with_segments()` (GH-103975)
Barney Gale
2023-05-05
1
-15/+37
*
GH-81079: Add case_sensitive argument to `pathlib.Path.glob()` (GH-102710)
Barney Gale
2023-05-04
1
-0/+12
*
GH-104114: Fix `pathlib.WindowsPath.glob()` use of literal pattern segment ca...
Barney Gale
2023-05-03
1
-2/+2
*
GH-89769: `pathlib.Path.glob()`: do not follow symlinks when checking for pre...
andrei kulakov
2023-05-03
1
-0/+4
*
GH-104102: Optimize `pathlib.Path.glob()` handling of `../` pattern segments ...
Barney Gale
2023-05-02
1
-0/+5
*
GH-103525: Improve exception message from `pathlib.PurePath()` (GH-103526)
Barney Gale
2023-05-02
1
-2/+2
*
GH-103517: Improve tests for `pathlib.Path.walk()` (GH-103518)
Barney Gale
2023-04-15
1
-32/+45
*
GH-78079: Fix UNC device path root normalization in pathlib (GH-102003)
Barney Gale
2023-04-14
1
-0/+24
*
GH-101362: Omit path anchor from `pathlib.PurePath()._parts` (GH-102476)
Barney Gale
2023-04-09
1
-2/+0
*
GH-103379: Fix up old tests for `pathlib.PurePath._parse_path` (GH-103380)
Barney Gale
2023-04-09
1
-110/+97
*
GH-76846, GH-85281: Call `__new__()` and `__init__()` on pathlib subclasses (...
Barney Gale
2023-04-03
1
-1/+26
*
GH-89727: Fix pathlib.Path.walk RecursionError on deep trees (GH-100282)
Stanislav Zmiev
2023-03-22
1
-0/+13
*
GH-80486: Fix handling of NTFS alternate data streams in pathlib (GH-102454)
Barney Gale
2023-03-10
1
-1/+27
*
Remove or update bitbucket links (GH-101963)
sblondon
2023-03-08
1
-1/+1
*
GH-101362: Optimise PurePath(PurePath(...)) (GH-101667)
Barney Gale
2023-03-05
1
-0/+27
*
gh-100809: Fix handling of drive-relative paths in pathlib.Path.absolute() (G...
Barney Gale
2023-02-17
1
-0/+20
*
gh-101360: Fix anchor matching in pathlib.PureWindowsPath.match() (GH-101363)
Barney Gale
2023-02-17
1
-3/+6
*
gh-101000: Add os.path.splitroot() (#101002)
Barney Gale
2023-01-27
1
-37/+0
*
gh-74033: Fix bug when Path takes and ignores **kwargs (GH-19632)
Yurii Karabas
2023-01-14
1
-0/+5
*
gh-68320, gh-88302 - Allow for private `pathlib.Path` subclassing (GH-31691)
Barney Gale
2022-12-23
1
-30/+47
*
gh-78707: deprecate passing >1 argument to `PurePath.[is_]relative_to()` (GH-...
Barney Gale
2022-12-17
1
-3/+5
*
gh-99029: Fix handling of `PureWindowsPath('C:\<blah>').relative_to('C:')` (G...
Barney Gale
2022-11-25
1
-9/+5
*
gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)
Charles Machalow
2022-11-22
1
-0/+7
*
gh-84538: add strict argument to pathlib.PurePath.relative_to (GH-19813)
domragusa
2022-10-28
1
-0/+82
*
gh-94909: fix joining of absolute and relative Windows paths in pathlib (GH-...
Barney Gale
2022-08-12
1
-0/+4
*
gh-86943: implement `pathlib.WindowsPath.is_mount()` (GH-31458)
Barney Gale
2022-08-05
1
-4/+5
*
gh-90385: Add skip_unless_symlink decorator to test_walk_symlink_location (GH...
Christian Heimes
2022-07-23
1
-0/+1
*
gh-90385: Add `pathlib.Path.walk()` method (GH-92517)
Stanislav Zmiev
2022-07-22
1
-0/+197
*
gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)
Christian Heimes
2022-06-06
1
-0/+3
*
gh-93156 - fix negative indexing into absolute `pathlib.PurePath().parents` (...
Barney Gale
2022-06-03
1
-0/+5
*
gh-90473: Skip and document more failing tests on WASI (GH-93436)
Christian Heimes
2022-06-02
1
-0/+3
*
gh-90473: Misc test fixes for WASI (GH-93218)
Christian Heimes
2022-05-25
1
-3/+6
*
gh-92550: Fix pathlib.Path.rglob() for empty pattern (GH-92604)
Serhiy Storchaka
2022-05-11
1
-0/+5
*
Revert "gh-92550 - Fix regression in `pathlib.Path.rglob()` (GH-92583)" (GH-9...
Serhiy Storchaka
2022-05-11
1
-0/+17
*
gh-84131: Remove the deprecated pathlib.Path.link_to method. (#92505)
Gregory P. Smith
2022-05-10
1
-23/+1
*
gh-92550 - Fix regression in `pathlib.Path.rglob()` (GH-92583)
Barney Gale
2022-05-10
1
-17/+0
*
bpo-22276: Change pathlib.Path.glob not to ignore trailing path separator (GH...
Eisuke Kawashima
2022-04-28
1
-0/+17
*
gh-91616: re module, fix .fullmatch() mismatch when using Atomic Grouping or ...
Ma Lin
2022-04-19
1
-1/+8
*
bpo-40280: Skip more tests/features that don't apply to Emscripten (GH-31791)
Christian Heimes
2022-03-10
1
-0/+11
[next]