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
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831)
Barney Gale
2024-04-13
2
-0/+10
*
GH-115060: Speed up `pathlib.Path.glob()` by not scanning literal parts (#117...
Barney Gale
2024-04-12
1
-9/+12
*
GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311)
Barney Gale
2024-04-05
1
-62/+7
*
GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513)
Barney Gale
2024-03-31
2
-65/+65
*
gh-104242: Enable test_is_char_device_true in pathlib test on all platform (G...
AN Long
2024-03-26
1
-5/+5
*
GH-116377: Stop raising `ValueError` from `glob.translate()`. (#116378)
Barney Gale
2024-03-17
1
-2/+0
*
gh-116057: Use relative recursion limits when testing os.walk() and Path.walk...
Malcolm Smith
2024-03-10
1
-3/+3
*
pathlib ABCs: follow all symlinks in `PathBase.glob()` (#116293)
Barney Gale
2024-03-04
1
-37/+32
*
gh-71052: Add test exclusions to support running the test suite on Android (#...
Malcolm Smith
2024-02-29
1
-1/+1
*
GH-114610: Fix `pathlib.PurePath.with_stem('')` handling of file extensions (...
Barney Gale
2024-02-24
1
-0/+2
*
GH-115060: Speed up `pathlib.Path.glob()` by removing redundant regex matchin...
Barney Gale
2024-02-10
1
-0/+13
*
GH-106747: Make pathlib ABC globbing more consistent with `glob.glob()` (#115...
Barney Gale
2024-02-06
1
-17/+17
*
pathlib ABCs: drop partial, broken, untested support for `bytes` paths. (#114...
Barney Gale
2024-01-31
2
-17/+26
*
GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#...
Barney Gale
2024-01-30
2
-12/+21
*
GH-114610: Fix `pathlib._abc.PurePathBase.with_suffix('.ext')` handling of st...
Barney Gale
2024-01-30
2
-10/+2
*
GH-79634: Speed up pathlib globbing by removing `joinpath()` call. (#114623)
Barney Gale
2024-01-27
2
-4/+5
*
Cover OS-specific behaviour in `PurePathBase` and `PathBase` tests. (#114633)
Barney Gale
2024-01-27
2
-627/+625
*
Cover OS-specific behaviour in `PurePath` and `Path` tests (#114632)
Barney Gale
2024-01-27
1
-70/+128
*
pathlib tests: annotate tests needing symlinks with decorator (#114625)
Barney Gale
2024-01-26
2
-48/+55
*
gh-88569: add `ntpath.isreserved()` (#95486)
Barney Gale
2024-01-26
1
-42/+6
*
GH-73435: Add `pathlib.PurePath.full_match()` (#114350)
Barney Gale
2024-01-26
1
-23/+75
*
GH-79634: Accept path-like objects as pathlib glob patterns. (#114017)
Barney Gale
2024-01-20
2
-3/+29
*
Replace `pathlib._abc.PathModuleBase.splitroot()` with `splitdrive()` (#114065)
Barney Gale
2024-01-14
1
-1/+1
*
Add `pathlib._abc.PathModuleBase` (#113893)
Barney Gale
2024-01-14
2
-2/+55
*
GH-44626, GH-105476: Fix `ntpath.isabs()` handling of part-absolute paths (#1...
Barney Gale
2024-01-13
1
-0/+4
*
pathlib ABCs: Require one or more initialiser arguments (#113885)
Barney Gale
2024-01-10
1
-24/+24
*
GH-113528: Deoptimise `pathlib._abc.PurePathBase` (#113559)
Barney Gale
2024-01-09
2
-26/+63
*
GH-113528: Speed up pathlib ABC tests. (#113788)
Barney Gale
2024-01-08
1
-2/+16
*
GH-113528: Move a few misplaced pathlib tests (#113527)
Barney Gale
2024-01-08
2
-86/+86
*
GH-113528: Slightly improve `pathlib.Path.glob()` tests for symlink loop hand...
Barney Gale
2024-01-06
1
-9/+14
*
GH-113528: Split up pathlib tests for invalid basenames. (#113776)
Barney Gale
2024-01-06
1
-4/+31
*
GH-113528: pathlib ABC tests: add repr to dummy path classes. (#113777)
Barney Gale
2024-01-06
1
-0/+6
*
GH-113568: Stop raising deprecation warnings from pathlib ABCs (#113757)
Barney Gale
2024-01-05
2
-7/+13
*
GH-113568: Stop raising auditing events from pathlib ABCs (#113571)
Barney Gale
2024-01-05
2
-13/+12
*
GH-113528: Remove a couple of expensive pathlib ABC tests (#113534)
Barney Gale
2023-12-28
2
-42/+43
*
GH-110109: Adjust `test_pathlib_abc` imports to ease backporting (#113411)
Barney Gale
2023-12-22
1
-12/+13
*
GH-110109: pathlib ABCs: do not vary path syntax by host OS. (#113219)
Barney Gale
2023-12-22
2
-58/+85
*
GH-112855: Slightly improve tests for `pathlib.PurePath` pickling (#113243)
Barney Gale
2023-12-22
2
-16/+10
*
GH-110109: Fix misleading `pathlib._abc.PurePathBase` repr (#113376)
Barney Gale
2023-12-22
2
-12/+13
*
GH-110109: pathlib tests: store base directory as test class attribute (#113221)
Barney Gale
2023-12-17
2
-222/+210
*
GH-110109: Move tests for pathlib ABCs to new module. (#112904)
Barney Gale
2023-12-16
3
-0/+3900