| Commit message (Expand) | Author | Age | Files | Lines |
* | GH-119518: Stop interning strings in pathlib GH-123356) | Barney Gale | 2024-09-02 | 1 | -2/+1 |
|
|
* | gh-118761: Speedup pathlib import by deferring shutil (#123520) | Daniel Hollas | 2024-09-01 | 1 | -2/+4 |
|
|
* | GH-73991: Prune `pathlib.Path.copy()` and `copy_into()` arguments (#123337) | Barney Gale | 2024-08-26 | 1 | -33/+19 |
|
|
* | GH-73991: Make `pathlib.Path.delete()` private. (#123315) | Barney Gale | 2024-08-26 | 2 | -66/+21 |
|
|
* | GH-73991: Add `pathlib.Path.copy_into()` and `move_into()` (#123314) | Barney Gale | 2024-08-26 | 1 | -0/+31 |
|
|
* | GH-73991: Add `pathlib.Path.move()` (#122073) | Barney Gale | 2024-08-25 | 1 | -1/+20 |
|
|
* | GH-122890: Fix low-level error handling in `pathlib.Path.copy()` (#122897) | Barney Gale | 2024-08-24 | 1 | -16/+42 |
|
|
* | GH-73991: Disallow copying directory into itself via `pathlib.Path.copy()` (#... | Barney Gale | 2024-08-23 | 1 | -6/+37 |
|
|
* | GH-120754: Disable buffering in Path.read_bytes (#122111) | Cody Maloney | 2024-08-16 | 1 | -1/+1 |
|
|
* | GH-73991: Rework `pathlib.Path.copytree()` into `copy()` (#122369) | Barney Gale | 2024-08-11 | 4 | -99/+63 |
|
|
* | GH-73991: Rework `pathlib.Path.rmtree()` into `delete()` (#122368) | Barney Gale | 2024-08-07 | 2 | -28/+40 |
|
|
* | Fix duplicated words 'begins with a' in pathlib docstring (#122732) | Виталий Дмитриев | 2024-08-06 | 1 | -1/+1 |
|
|
* | GH-73991: Support preserving metadata in `pathlib.Path.copytree()` (#121438) | Barney Gale | 2024-07-20 | 1 | -2/+6 |
|
|
* | GH-73991: Add `pathlib.Path.rmtree()` (#119060) | Barney Gale | 2024-07-20 | 2 | -0/+60 |
|
|
* | GH-73991: Support preserving metadata in `pathlib.Path.copy()` (#120806) | Barney Gale | 2024-07-06 | 3 | -5/+137 |
|
|
* | GH-73991: Support copying directory symlinks on older Windows (#120807) | Barney Gale | 2024-07-03 | 4 | -23/+38 |
|
|
* | GH-73991: Add `pathlib.Path.copytree()` (#120718) | Barney Gale | 2024-06-23 | 1 | -0/+30 |
|
|
* | GH-73991: Add follow_symlinks argument to `pathlib.Path.copy()` (#120519) | Barney Gale | 2024-06-19 | 3 | -9/+37 |
|
|
* | GH-73991: Add `pathlib.Path.copy()` (#119058) | Barney Gale | 2024-06-14 | 3 | -0/+184 |
|
|
* | GH-116380: Move pathlib-specific code from `glob` to `pathlib._abc`. (#120011) | Barney Gale | 2024-06-07 | 1 | -2/+30 |
|
|
* | pathlib ABCs: remove duplicate `realpath()` implementation. (#119178) | Barney Gale | 2024-06-05 | 1 | -59/+28 |
|
|
* | GH-119169: Implement `pathlib.Path.walk()` using `os.walk()` (#119573) | Barney Gale | 2024-05-29 | 2 | -2/+34 |
|
|
* | GH-82805: Fix handling of single-dot file extensions in pathlib (#118952) | Barney Gale | 2024-05-25 | 2 | -18/+50 |
|
|
* | GH-119113: Raise `TypeError` from `pathlib.PurePath.with_suffix(None)` (#119124) | Barney Gale | 2024-05-19 | 1 | -6/+4 |
|
|
* | gh-119049: Defer `import warnings` in `pathlib._local` (#119111) | Kirill Podoprigora | 2024-05-17 | 1 | -1/+1 |
|
|
* | GH-74033: Drop deprecated `pathlib.Path` keyword arguments (#118793) | Barney Gale | 2024-05-14 | 1 | -7/+0 |
|
|
* | GH-101357: Suppress `OSError` from `pathlib.Path.exists()` and `is_*()` (#118... | Barney Gale | 2024-05-14 | 2 | -82/+43 |
|
|
* | GH-78707: Drop deprecated `pathlib.PurePath.[is_]relative_to()` arguments (#1... | Barney Gale | 2024-05-10 | 1 | -16/+4 |
|
|
* | GH-116380: Revert move of pathlib globbing code to `pathlib._glob` (#118678) | Barney Gale | 2024-05-07 | 3 | -336/+5 |
|
|
* | Move pathlib implementation out of `__init__.py` (#118582) | Barney Gale | 2024-05-05 | 4 | -905/+910 |
|
|
* | GH-116380: Move pathlib globbing implementation into `pathlib._glob` (#118562) | Barney Gale | 2024-05-03 | 3 | -6/+311 |
|
|
* | docs: typo: tiny grammar change: "pointed by" -> "pointed to by" (#118411) | Andrew Zipperer | 2024-05-02 | 2 | -2/+2 |
|
|
* | GH-112855: Speed up `pathlib.PurePath` pickling (#112856) | Barney Gale | 2024-04-20 | 1 | -3/+1 |
|
|
* | GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831) | Barney Gale | 2024-04-13 | 2 | -6/+2 |
|
|
* | GH-117727: Speed up `pathlib.Path.iterdir()` by using `os.scandir()` (#117728) | Barney Gale | 2024-04-12 | 1 | -20/+6 |
|
|
* | GH-115060: Speed up `pathlib.Path.glob()` by not scanning literal parts (#117... | Barney Gale | 2024-04-12 | 1 | -1/+7 |
|
|
* | GH-117586: Speed up `pathlib.Path.walk()` by working with strings (#117726) | Barney Gale | 2024-04-11 | 2 | -71/+14 |
|
|
* | GH-117586: Speed up `pathlib.Path.glob()` by working with strings (#117589) | Barney Gale | 2024-04-10 | 2 | -195/+82 |
|
|
* | GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311) | Barney Gale | 2024-04-05 | 2 | -16/+12 |
|
|
* | GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513) | Barney Gale | 2024-03-31 | 2 | -52/+52 |
|
|
* | pathlib ABCs: follow all symlinks in `PathBase.glob()` (#116293) | Barney Gale | 2024-03-04 | 1 | -2/+2 |
|
|
* | GH-114610: Fix `pathlib.PurePath.with_stem('')` handling of file extensions (... | Barney Gale | 2024-02-24 | 1 | -1/+9 |
|
|
* | GH-115060: Speed up `pathlib.Path.glob()` by removing redundant regex matchin... | Barney Gale | 2024-02-10 | 2 | -28/+62 |
|
|
* | GH-106747: Make pathlib ABC globbing more consistent with `glob.glob()` (#115... | Barney Gale | 2024-02-06 | 1 | -1/+1 |
|
|
* | pathlib ABCs: drop partial, broken, untested support for `bytes` paths. (#114... | Barney Gale | 2024-01-31 | 1 | -4/+3 |
|
|
* | pathlib ABCs: raise `UnsupportedOperation` directly. (#114776) | Barney Gale | 2024-01-31 | 2 | -33/+31 |
|
|
* | GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#... | Barney Gale | 2024-01-30 | 1 | -8/+0 |
|
|
* | GH-114610: Fix `pathlib._abc.PurePathBase.with_suffix('.ext')` handling of st... | Barney Gale | 2024-01-30 | 1 | -2/+5 |
|
|
* | GH-79634: Speed up pathlib globbing by removing `joinpath()` call. (#114623) | Barney Gale | 2024-01-27 | 1 | -1/+1 |
|
|
* | gh-88569: add `ntpath.isreserved()` (#95486) | Barney Gale | 2024-01-26 | 1 | -21/+7 |
|
|