summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pathlib
Commit message (Expand)AuthorAgeFilesLines
* GH-73991: Rework `pathlib.Path.rmtree()` into `delete()` (#122368)Barney Gale2024-08-072-98/+70
* gh-122096: Remove accidentally left debugging prints (#122097)Kirill Podoprigora2024-07-211-2/+0
* GH-73991: Support preserving metadata in `pathlib.Path.copytree()` (#121438)Barney Gale2024-07-201-0/+30
* GH-73991: Add `pathlib.Path.rmtree()` (#119060)Barney Gale2024-07-202-0/+350
* GH-73991: Fix "Operation not supported" on Fedora buildbot. (#121444)Barney Gale2024-07-071-4/+9
* GH-73991: Support preserving metadata in `pathlib.Path.copy()` (#120806)Barney Gale2024-07-061-0/+44
* GH-73991: Support copying directory symlinks on older Windows (#120807)Barney Gale2024-07-031-1/+2
* gh-73991: Skip permission test if running as *nix superuser (GH-120994)Petr Viktorin2024-06-261-0/+1
* GH-73991: Add `pathlib.Path.copytree()` (#120718)Barney Gale2024-06-232-0/+170
* GH-73991: Add follow_symlinks argument to `pathlib.Path.copy()` (#120519)Barney Gale2024-06-191-1/+34
* GH-73991: pathlib ABC tests: add `DummyPath.unlink()` and `rmdir()` (#120715)Barney Gale2024-06-182-20/+51
* GH-73991: Add `pathlib.Path.copy()` (#119058)Barney Gale2024-06-141-0/+62
* GH-82805: Fix handling of single-dot file extensions in pathlib (#118952)Barney Gale2024-05-251-17/+33
* GH-119113: Raise `TypeError` from `pathlib.PurePath.with_suffix(None)` (#119124)Barney Gale2024-05-191-1/+3
* GH-74033: Drop deprecated `pathlib.Path` keyword arguments (#118793)Barney Gale2024-05-141-2/+2
* GH-78707: Drop deprecated `pathlib.PurePath.[is_]relative_to()` arguments (#1...Barney Gale2024-05-101-13/+0
* GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831)Barney Gale2024-04-132-0/+10
* 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-312-65/+65
* gh-104242: Enable test_is_char_device_true in pathlib test on all platform (G...AN Long2024-03-261-5/+5
* GH-116377: Stop raising `ValueError` from `glob.translate()`. (#116378)Barney Gale2024-03-171-2/+0
* gh-116057: Use relative recursion limits when testing os.walk() and Path.walk...Malcolm Smith2024-03-101-3/+3
* pathlib ABCs: follow all symlinks in `PathBase.glob()` (#116293)Barney Gale2024-03-041-37/+32
* gh-71052: Add test exclusions to support running the test suite on Android (#...Malcolm Smith2024-02-291-1/+1
* GH-114610: Fix `pathlib.PurePath.with_stem('')` handling of file extensions (...Barney Gale2024-02-241-0/+2
* GH-115060: Speed up `pathlib.Path.glob()` by removing redundant regex matchin...Barney Gale2024-02-101-0/+13
* 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-312-17/+26
* GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#...Barney Gale2024-01-302-12/+21
* GH-114610: Fix `pathlib._abc.PurePathBase.with_suffix('.ext')` handling of st...Barney Gale2024-01-302-10/+2
* GH-79634: Speed up pathlib globbing by removing `joinpath()` call. (#114623)Barney Gale2024-01-272-4/+5
* Cover OS-specific behaviour in `PurePathBase` and `PathBase` tests. (#114633)Barney Gale2024-01-272-627/+625
* Cover OS-specific behaviour in `PurePath` and `Path` tests (#114632)Barney Gale2024-01-271-70/+128
* pathlib tests: annotate tests needing symlinks with decorator (#114625)Barney Gale2024-01-262-48/+55
* gh-88569: add `ntpath.isreserved()` (#95486)Barney Gale2024-01-261-42/+6
* 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-202-3/+29
* Replace `pathlib._abc.PathModuleBase.splitroot()` with `splitdrive()` (#114065)Barney Gale2024-01-141-1/+1
* Add `pathlib._abc.PathModuleBase` (#113893)Barney Gale2024-01-142-2/+55
* GH-44626, GH-105476: Fix `ntpath.isabs()` handling of part-absolute paths (#1...Barney Gale2024-01-131-0/+4
* 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-092-26/+63
* 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-082-86/+86
* 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-052-7/+13
* GH-113568: Stop raising auditing events from pathlib ABCs (#113571)Barney Gale2024-01-052-13/+12