summaryrefslogtreecommitdiffstats
path: root/Lib/pathlib
Commit message (Expand)AuthorAgeFilesLines
* GH-116380: Move pathlib-specific code from `glob` to `pathlib._abc`. (#120011)Barney Gale2024-06-071-2/+30
* pathlib ABCs: remove duplicate `realpath()` implementation. (#119178)Barney Gale2024-06-051-59/+28
* GH-119169: Implement `pathlib.Path.walk()` using `os.walk()` (#119573)Barney Gale2024-05-292-2/+34
* GH-82805: Fix handling of single-dot file extensions in pathlib (#118952)Barney Gale2024-05-252-18/+50
* GH-119113: Raise `TypeError` from `pathlib.PurePath.with_suffix(None)` (#119124)Barney Gale2024-05-191-6/+4
* gh-119049: Defer `import warnings` in `pathlib._local` (#119111)Kirill Podoprigora2024-05-171-1/+1
* GH-74033: Drop deprecated `pathlib.Path` keyword arguments (#118793)Barney Gale2024-05-141-7/+0
* GH-101357: Suppress `OSError` from `pathlib.Path.exists()` and `is_*()` (#118...Barney Gale2024-05-142-82/+43
* GH-78707: Drop deprecated `pathlib.PurePath.[is_]relative_to()` arguments (#1...Barney Gale2024-05-101-16/+4
* GH-116380: Revert move of pathlib globbing code to `pathlib._glob` (#118678)Barney Gale2024-05-073-336/+5
* Move pathlib implementation out of `__init__.py` (#118582)Barney Gale2024-05-054-905/+910
* GH-116380: Move pathlib globbing implementation into `pathlib._glob` (#118562)Barney Gale2024-05-033-6/+311
* docs: typo: tiny grammar change: "pointed by" -> "pointed to by" (#118411)Andrew Zipperer2024-05-022-2/+2
* GH-112855: Speed up `pathlib.PurePath` pickling (#112856)Barney Gale2024-04-201-3/+1
* GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831)Barney Gale2024-04-132-6/+2
* GH-117727: Speed up `pathlib.Path.iterdir()` by using `os.scandir()` (#117728)Barney Gale2024-04-121-20/+6
* GH-115060: Speed up `pathlib.Path.glob()` by not scanning literal parts (#117...Barney Gale2024-04-121-1/+7
* GH-117586: Speed up `pathlib.Path.walk()` by working with strings (#117726)Barney Gale2024-04-112-71/+14
* GH-117586: Speed up `pathlib.Path.glob()` by working with strings (#117589)Barney Gale2024-04-102-195/+82
* GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311)Barney Gale2024-04-052-16/+12
* GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513)Barney Gale2024-03-312-52/+52
* pathlib ABCs: follow all symlinks in `PathBase.glob()` (#116293)Barney Gale2024-03-041-2/+2
* GH-114610: Fix `pathlib.PurePath.with_stem('')` handling of file extensions (...Barney Gale2024-02-241-1/+9
* GH-115060: Speed up `pathlib.Path.glob()` by removing redundant regex matchin...Barney Gale2024-02-102-28/+62
* GH-106747: Make pathlib ABC globbing more consistent with `glob.glob()` (#115...Barney Gale2024-02-061-1/+1
* pathlib ABCs: drop partial, broken, untested support for `bytes` paths. (#114...Barney Gale2024-01-311-4/+3
* pathlib ABCs: raise `UnsupportedOperation` directly. (#114776)Barney Gale2024-01-312-33/+31
* GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#...Barney Gale2024-01-301-8/+0
* GH-114610: Fix `pathlib._abc.PurePathBase.with_suffix('.ext')` handling of st...Barney Gale2024-01-301-2/+5
* GH-79634: Speed up pathlib globbing by removing `joinpath()` call. (#114623)Barney Gale2024-01-271-1/+1
* gh-88569: add `ntpath.isreserved()` (#95486)Barney Gale2024-01-261-21/+7
* GH-73435: Add `pathlib.PurePath.full_match()` (#114350)Barney Gale2024-01-262-16/+45
* GH-113225: Speed up `pathlib.Path.walk(top_down=False)` (#113693)Barney Gale2024-01-201-4/+5
* GH-79634: Accept path-like objects as pathlib glob patterns. (#114017)Barney Gale2024-01-202-69/+78
* Replace `pathlib._abc.PathModuleBase.splitroot()` with `splitdrive()` (#114065)Barney Gale2024-01-141-10/+8
* Add `pathlib._abc.PathModuleBase` (#113893)Barney Gale2024-01-142-57/+127
* Add module docstring for `pathlib._abc`. (#113691)Barney Gale2024-01-131-0/+13
* pathlib ABCs: add `_raw_path` property (#113976)Barney Gale2024-01-132-20/+31
* GH-44626, GH-105476: Fix `ntpath.isabs()` handling of part-absolute paths (#1...Barney Gale2024-01-131-5/+1
* pathlib ABCs: Require one or more initialiser arguments (#113885)Barney Gale2024-01-101-8/+2
* GH-113528: Deoptimise `pathlib._abc.PurePathBase` (#113559)Barney Gale2024-01-092-114/+132
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.relative_to()` (again) (#113...Barney Gale2024-01-092-15/+42
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.parts` (#113883)Barney Gale2024-01-092-4/+13
* GH-113528: Deoptimise `pathlib._abc.PathBase.resolve()` (#113782)Barney Gale2024-01-091-25/+40
* GH-113528: Deoptimise `pathlib._abc.PathBase._make_child_relpath()` (#113532)Barney Gale2024-01-092-14/+17
* GH-113528: Speed up pathlib ABC tests. (#113788)Barney Gale2024-01-081-4/+4
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.relative_to()` (#113529)Barney Gale2024-01-062-2/+5
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.parent` (#113530)Barney Gale2024-01-062-42/+63
* GH-113528: Deoptimise `pathlib._abc.PurePathBase.name` (#113531)Barney Gale2024-01-062-7/+25
* GH-113568: Stop raising deprecation warnings from pathlib ABCs (#113757)Barney Gale2024-01-052-17/+31