summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pathlib/test_pathlib_abc.py
Commit message (Expand)AuthorAgeFilesLines
* GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831)Barney Gale2024-04-131-0/+3
* GH-115060: Speed up `pathlib.Path.glob()` by not scanning literal parts (#117...Barney Gale2024-04-121-9/+12
* GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311)Barney Gale2024-04-051-62/+7
* GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513)Barney Gale2024-03-311-38/+38
* GH-116377: Stop raising `ValueError` from `glob.translate()`. (#116378)Barney Gale2024-03-171-2/+0
* pathlib ABCs: follow all symlinks in `PathBase.glob()` (#116293)Barney Gale2024-03-041-37/+32
* GH-114610: Fix `pathlib.PurePath.with_stem('')` handling of file extensions (...Barney Gale2024-02-241-0/+2
* GH-106747: Make pathlib ABC globbing more consistent with `glob.glob()` (#115...Barney Gale2024-02-061-17/+17
* pathlib ABCs: drop partial, broken, untested support for `bytes` paths. (#114...Barney Gale2024-01-311-0/+25
* GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#...Barney Gale2024-01-301-0/+21
* GH-114610: Fix `pathlib._abc.PurePathBase.with_suffix('.ext')` handling of st...Barney Gale2024-01-301-3/+2
* GH-79634: Speed up pathlib globbing by removing `joinpath()` call. (#114623)Barney Gale2024-01-271-4/+3
* Cover OS-specific behaviour in `PurePathBase` and `PathBase` tests. (#114633)Barney Gale2024-01-271-0/+625
* pathlib tests: annotate tests needing symlinks with decorator (#114625)Barney Gale2024-01-261-37/+49
* GH-73435: Add `pathlib.PurePath.full_match()` (#114350)Barney Gale2024-01-261-23/+75
* GH-79634: Accept path-like objects as pathlib glob patterns. (#114017)Barney Gale2024-01-201-3/+6
* Replace `pathlib._abc.PathModuleBase.splitroot()` with `splitdrive()` (#114065)Barney Gale2024-01-141-1/+1
* Add `pathlib._abc.PathModuleBase` (#113893)Barney Gale2024-01-141-2/+54
* pathlib ABCs: Require one or more initialiser arguments (#113885)Barney Gale2024-01-101-24/+24
* GH-113528: Deoptimise `pathlib._abc.PurePathBase` (#113559)Barney Gale2024-01-091-26/+22
* GH-113528: Speed up pathlib ABC tests. (#113788)Barney Gale2024-01-081-2/+16
* GH-113528: Move a few misplaced pathlib tests (#113527)Barney Gale2024-01-081-86/+0
* GH-113528: Slightly improve `pathlib.Path.glob()` tests for symlink loop hand...Barney Gale2024-01-061-9/+14
* GH-113528: Split up pathlib tests for invalid basenames. (#113776)Barney Gale2024-01-061-4/+31
* GH-113528: pathlib ABC tests: add repr to dummy path classes. (#113777)Barney Gale2024-01-061-0/+6
* GH-113568: Stop raising deprecation warnings from pathlib ABCs (#113757)Barney Gale2024-01-051-7/+0
* GH-113568: Stop raising auditing events from pathlib ABCs (#113571)Barney Gale2024-01-051-13/+0
* GH-113528: Remove a couple of expensive pathlib ABC tests (#113534)Barney Gale2023-12-281-42/+0
* GH-110109: Adjust `test_pathlib_abc` imports to ease backporting (#113411)Barney Gale2023-12-221-12/+13
* GH-110109: pathlib ABCs: do not vary path syntax by host OS. (#113219)Barney Gale2023-12-221-58/+26
* GH-112855: Slightly improve tests for `pathlib.PurePath` pickling (#113243)Barney Gale2023-12-221-8/+0
* GH-110109: Fix misleading `pathlib._abc.PurePathBase` repr (#113376)Barney Gale2023-12-221-12/+1
* GH-110109: pathlib tests: store base directory as test class attribute (#113221)Barney Gale2023-12-171-136/+129
* GH-110109: Move tests for pathlib ABCs to new module. (#112904)Barney Gale2023-12-161-0/+1918