summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pathlib
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-122-9/+11
* GH-127381: pathlib ABCs: remove remaining uncommon `PathBase` methods (#127714)Barney Gale2024-12-121-12/+0
* GH-127381: pathlib ABCs: remove `PathBase.samefile()` and rarer `is_*()` (#12...Barney Gale2024-12-112-83/+75
* GH-127456: pathlib ABCs: add protocol for path parser (#127494)Barney Gale2024-12-091-53/+8
* GH-127381: pathlib ABCs: remove `PathBase.unlink()` and `rmdir()` (#127736)Barney Gale2024-12-082-45/+30
* GH-127381: pathlib ABCs: remove `PathBase.resolve()` and `absolute()` (#127707)Barney Gale2024-12-062-668/+598
* GH-127381: pathlib ABCs: remove `PathBase.rename()` and `replace()` (#127658)Barney Gale2024-12-061-2/+0
* GH-125413: Revert addition of `pathlib.Path.scandir()` method (#127377)Barney Gale2024-12-051-39/+9
* gh-127146: Emscripten: Skip segfaults in test suite (#127151)Hood Chatham2024-12-051-1/+3
* GH-127381: pathlib ABCs: remove `PathBase.cwd()` and `home()` (#127427)Barney Gale2024-11-301-2/+0
* GH-127381: pathlib ABCs: remove `PathBase.lstat()` (#127382)Barney Gale2024-11-292-19/+17
* pathlib tests: move `walk()` tests into their own classes (GH-126651)Barney Gale2024-11-242-84/+107
* pathlib ABCs: tighten up `resolve()` and `absolute()` (#126611)Barney Gale2024-11-092-23/+39
* pathlib ABCs: support initializing paths with no arguments (#126608)Barney Gale2024-11-091-0/+1
* pathlib ABCs: defer path joining (#126409)Barney Gale2024-11-051-5/+0
* GH-125413: pathlib ABCs: use `scandir()` to speed up `walk()` (#126262)Barney Gale2024-11-011-2/+2
* GH-125413: pathlib ABCs: use `scandir()` to speed up `glob()` (#126261)Barney Gale2024-11-011-3/+5
* GH-125413: Add `pathlib.Path.scandir()` method (#126060)Barney Gale2024-11-011-10/+57
* 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: Prune `pathlib.Path.copy()` and `copy_into()` arguments (#123337)Barney Gale2024-08-261-63/+0
* GH-73991: Make `pathlib.Path.delete()` private. (#123315)Barney Gale2024-08-262-180/+23
* GH-73991: Add `pathlib.Path.copy_into()` and `move_into()` (#123314)Barney Gale2024-08-262-0/+38
* GH-73991: Add `pathlib.Path.move()` (#122073)Barney Gale2024-08-252-0/+181
* GH-122890: Fix low-level error handling in `pathlib.Path.copy()` (#122897)Barney Gale2024-08-241-0/+48
* GH-73991: Disallow copying directory into itself via `pathlib.Path.copy()` (#...Barney Gale2024-08-231-8/+103
* GH-120754: Disable buffering in Path.read_bytes (#122111)Cody Maloney2024-08-161-1/+1
* 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-112-56/+57
* 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