summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pathlib/test_pathlib.py
Commit message (Expand)AuthorAgeFilesLines
* gh-127146: Emscripten clean up test suite (#127984)Hood Chatham2024-12-171-6/+1
* GH-127807: pathlib ABCs: remove `PathBase._unsupported_msg()` (#127855)Barney Gale2024-12-121-0/+8
* GH-127381: pathlib ABCs: remove `PathBase.samefile()` and rarer `is_*()` (#12...Barney Gale2024-12-111-2/+75
* GH-127381: pathlib ABCs: remove `PathBase.unlink()` and `rmdir()` (#127736)Barney Gale2024-12-081-0/+19
* GH-127381: pathlib ABCs: remove `PathBase.resolve()` and `absolute()` (#127707)Barney Gale2024-12-061-2/+584
* GH-127381: pathlib ABCs: remove `PathBase.lstat()` (#127382)Barney Gale2024-11-291-5/+13
* pathlib tests: move `walk()` tests into their own classes (GH-126651)Barney Gale2024-11-241-78/+88
* pathlib ABCs: tighten up `resolve()` and `absolute()` (#126611)Barney Gale2024-11-091-0/+22
* GH-125069: Fix inconsistent joining in `WindowsPath(PosixPath(...))` (#125156)Barney Gale2024-10-131-0/+9
* GH-119518: Stop interning strings in pathlib GH-123356)Barney Gale2024-09-021-9/+0
* GH-73991: Make `pathlib.Path.delete()` private. (#123315)Barney Gale2024-08-261-165/+16
* GH-73991: Add `pathlib.Path.copy_into()` and `move_into()` (#123314)Barney Gale2024-08-261-0/+8
* GH-73991: Add `pathlib.Path.move()` (#122073)Barney Gale2024-08-251-0/+62
* GH-122890: Fix low-level error handling in `pathlib.Path.copy()` (#122897)Barney Gale2024-08-241-0/+48
* GH-85633: Fix pathlib test failures on filesystems without world-write. (#122...Barney Gale2024-08-131-8/+12
* GH-73991: Rework `pathlib.Path.copytree()` into `copy()` (#122369)Barney Gale2024-08-111-7/+7
* GH-73991: Rework `pathlib.Path.rmtree()` into `delete()` (#122368)Barney Gale2024-08-071-39/+38
* 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-201-0/+251
* 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: 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-231-0/+13
* GH-73991: pathlib ABC tests: add `DummyPath.unlink()` and `rmdir()` (#120715)Barney Gale2024-06-181-19/+0
* 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-131-0/+7
* GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513)Barney Gale2024-03-311-27/+27
* gh-104242: Enable test_is_char_device_true in pathlib test on all platform (G...AN Long2024-03-261-5/+5
* gh-116057: Use relative recursion limits when testing os.walk() and Path.walk...Malcolm Smith2024-03-101-3/+3
* gh-71052: Add test exclusions to support running the test suite on Android (#...Malcolm Smith2024-02-291-1/+1
* GH-115060: Speed up `pathlib.Path.glob()` by removing redundant regex matchin...Barney Gale2024-02-101-0/+13
* pathlib ABCs: drop partial, broken, untested support for `bytes` paths. (#114...Barney Gale2024-01-311-17/+1
* GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#...Barney Gale2024-01-301-12/+0
* GH-114610: Fix `pathlib._abc.PurePathBase.with_suffix('.ext')` handling of st...Barney Gale2024-01-301-7/+0
* GH-79634: Speed up pathlib globbing by removing `joinpath()` call. (#114623)Barney Gale2024-01-271-0/+2
* Cover OS-specific behaviour in `PurePathBase` and `PathBase` tests. (#114633)Barney Gale2024-01-271-627/+0
* 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-261-11/+6
* gh-88569: add `ntpath.isreserved()` (#95486)Barney Gale2024-01-261-42/+6
* GH-79634: Accept path-like objects as pathlib glob patterns. (#114017)Barney Gale2024-01-201-0/+23
* Add `pathlib._abc.PathModuleBase` (#113893)Barney Gale2024-01-141-0/+1
* GH-44626, GH-105476: Fix `ntpath.isabs()` handling of part-absolute paths (#1...Barney Gale2024-01-131-0/+4
* GH-113528: Deoptimise `pathlib._abc.PurePathBase` (#113559)Barney Gale2024-01-091-0/+41
* GH-113528: Move a few misplaced pathlib tests (#113527)Barney Gale2024-01-081-0/+86
* GH-113568: Stop raising deprecation warnings from pathlib ABCs (#113757)Barney Gale2024-01-051-0/+13
* GH-113568: Stop raising auditing events from pathlib ABCs (#113571)Barney Gale2024-01-051-0/+12
* GH-113528: Remove a couple of expensive pathlib ABC tests (#113534)Barney Gale2023-12-281-0/+43
* GH-110109: pathlib ABCs: do not vary path syntax by host OS. (#113219)Barney Gale2023-12-221-0/+59