summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pathlib.py
Commit message (Expand)AuthorAgeFilesLines
* GH-112361: Speed up pathlib by removing some temporary objects. (#112362)Barney Gale2023-11-251-2/+0
* gh-110745: add a newline argument to pathlib.Path.read_text (#110880)Junya Okabe2023-11-211-0/+15
* GH-110109: Test pure functionality of `pathlib.Path` user subclasses (#112242)Barney Gale2023-11-181-12/+4
* GH-110109: Fix misplaced tests for `pathlib.WindowsPath.owner()` and `group()...Barney Gale2023-11-181-10/+10
* GH-110109: Churn `pathlib.PurePath` methods (#112012)Barney Gale2023-11-171-84/+84
* GH-110109: Move tests for `pathlib.Path.walk()` into main test classes. (#110...Barney Gale2023-10-281-169/+169
* GH-110488: Fix two small issues in `pathlib.PurePath.with_name()` (#110651)Barney Gale2023-10-111-4/+10
* GH-110109: Simplify pathlib test setup (#110308)Barney Gale2023-10-101-76/+42
* GH-107465: Add `pathlib.Path.from_uri()` classmethod. (#107640)Barney Gale2023-10-011-0/+44
* GH-89812: Add `pathlib._PathBase` (#106337)Barney Gale2023-09-301-74/+326
* GH-109187: Improve symlink loop handling in `pathlib.Path.resolve()` (GH-109192)Barney Gale2023-09-261-5/+8
* GH-78722: Raise exceptions from `pathlib.Path.iterdir()` without delay. (#107...Barney Gale2023-09-021-1/+1
* GH-70303: Emit FutureWarning when pathlib glob pattern ends with `**` (GH-105...Barney Gale2023-08-041-3/+16
* gh-105002: [pathlib] Fix relative_to with walk_up=True using ".." (#107014)János Kukovecz2023-07-261-0/+12
* GH-100502: Add `pathlib.PurePath.pathmod` attribute (GH-106533)Barney Gale2023-07-191-16/+16
* GH-106330: Fix matching of empty path in `pathlib.PurePath.match()` (GH-106331)Barney Gale2023-07-031-0/+4
* GH-89812: Improve test for `pathlib.Path.stat()` (GH-106064)Barney Gale2023-07-011-8/+18
* GH-89812: Miscellaneous pathlib test improvements (GH-106063)Barney Gale2023-07-011-18/+17
* GH-89812: Test that `pathlib.Path.is_junction()` returns false (GH-106062)Barney Gale2023-07-011-0/+9
* GH-89812: Make symlink support configurable in pathlib tests. (GH-106060)Barney Gale2023-07-011-36/+52
* GH-89812: Simplify creation of symlinks in pathlib tests. (GH-106061)Barney Gale2023-06-301-20/+12
* GH-105793: Add follow_symlinks argument to `pathlib.Path.is_dir()` and `is_fi...Barney Gale2023-06-261-5/+31
* GH-89812: Add `pathlib.UnsupportedOperation` (GH-105926)Barney Gale2023-06-221-5/+27
* GH-89812: Churn `pathlib.Path` test methods (#105807)Barney Gale2023-06-151-315/+315
* GH-89812: Clean up pathlib tests. (#104829)Barney Gale2023-06-141-84/+96
* gh-102613: Bump recursion limit to fix running test_pathlib under Coverage (#...Łukasz Langa2023-06-131-1/+1
* GH-102613: Fast recursive globbing in `pathlib.Path.glob()` (GH-104512)Barney Gale2023-06-061-0/+18
* gh-105407: Remove unused imports in tests (#105408)Victor Stinner2023-06-061-1/+0
* GH-73435: Implement recursive wildcards in `pathlib.PurePath.match()` (#101398)Barney Gale2023-05-301-1/+23
* GH-77609: Add follow_symlinks argument to `pathlib.Path.glob()` (GH-102616)Barney Gale2023-05-291-0/+83
* GH-103631: Fix `PurePosixPath(PureWindowsPath(...))` separator handling (GH-1...Barney Gale2023-05-261-0/+6
* GH-104947: Make pathlib.PureWindowsPath comparisons consistent across platfor...Barney Gale2023-05-261-0/+1
* GH-83863: Drop support for using `pathlib.Path` objects as context managers (...Barney Gale2023-05-231-20/+0
* GH-104484: Add case_sensitive argument to `pathlib.PurePath.match()` (GH-104565)thirumurugan2023-05-181-1/+6
* GH-102613: Fix recursion error from `pathlib.Path.glob()` (GH-104373)Barney Gale2023-05-151-0/+11
* GH-90208: Suppress OSError exceptions from `pathlib.Path.glob()` (GH-104141)Barney Gale2023-05-111-26/+12
* GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292)Barney Gale2023-05-101-0/+9
* GH-102613: Improve performance of `pathlib.Path.rglob()` (GH-104244)Barney Gale2023-05-071-1/+5
* GH-100479: Fix pathlib test failure on WASI (#104215)Barney Gale2023-05-071-1/+2
* GH-100479: Add `pathlib.PurePath.with_segments()` (GH-103975)Barney Gale2023-05-051-15/+37
* GH-81079: Add case_sensitive argument to `pathlib.Path.glob()` (GH-102710)Barney Gale2023-05-041-0/+12
* GH-104114: Fix `pathlib.WindowsPath.glob()` use of literal pattern segment ca...Barney Gale2023-05-031-2/+2
* GH-89769: `pathlib.Path.glob()`: do not follow symlinks when checking for pre...andrei kulakov2023-05-031-0/+4
* GH-104102: Optimize `pathlib.Path.glob()` handling of `../` pattern segments ...Barney Gale2023-05-021-0/+5
* GH-103525: Improve exception message from `pathlib.PurePath()` (GH-103526)Barney Gale2023-05-021-2/+2
* GH-103517: Improve tests for `pathlib.Path.walk()` (GH-103518)Barney Gale2023-04-151-32/+45
* GH-78079: Fix UNC device path root normalization in pathlib (GH-102003)Barney Gale2023-04-141-0/+24
* GH-101362: Omit path anchor from `pathlib.PurePath()._parts` (GH-102476)Barney Gale2023-04-091-2/+0
* GH-103379: Fix up old tests for `pathlib.PurePath._parse_path` (GH-103380)Barney Gale2023-04-091-110/+97
* GH-76846, GH-85281: Call `__new__()` and `__init__()` on pathlib subclasses (...Barney Gale2023-04-031-1/+26