index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
pathlib
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-139174: Prepare `pathlib.Path.info` for new methods (part 2) (#140155)
Barney Gale
2025-10-18
1
-96/+60
*
GH-133789: Fix unpickling of pathlib objects pickled in Python 3.13 (#133831)
Barney Gale
2025-10-17
1
-0/+12
*
gh-139001: Fix thread-safety issue in `pathlib.Path` (gh-139066)
Sam Gross
2025-10-10
1
-6/+1
*
pathlib ABCs: restore `relative_to()` and `is_relative_to()` (#138853)
Barney Gale
2025-10-10
2
-2/+32
*
GH-139174: Prepare `pathlib.Path.info` for new methods (#139175)
Barney Gale
2025-09-24
2
-288/+251
*
GH-128520: pathlib ABCs: improve protocol for 'openable' objects (#134101)
Barney Gale
2025-09-12
3
-41/+79
*
GH-128520: pathlib ABCs: tweak protocol for virtual path strings (#134104)
Barney Gale
2025-07-27
2
-16/+10
*
gh-133875: Remove deprecated `pathlib.PurePath.is_reserved` (#133876)
sobolevn
2025-07-19
1
-12/+0
*
GH-128520: pathlib ABCs: add `JoinablePath.__vfspath__()` (#133437)
Barney Gale
2025-05-12
3
-23/+63
*
GH-128520: pathlib ABCs: raise text encoding warnings at correct stack level ...
Barney Gale
2025-04-28
2
-4/+15
*
GH-125866: Support complete "file:" URLs in urllib (#132378)
Barney Gale
2025-04-14
1
-4/+2
*
GH-123599: `url2pathname()`: handle authority section in file URL (#126844)
Barney Gale
2025-04-10
1
-1/+5
*
GH-128520: pathlib ABCs: tighten up argument types (#131621)
Barney Gale
2025-03-24
2
-29/+9
*
GH-128520: pathlib ABCs: validate `magic_open()` arguments (#131617)
Barney Gale
2025-03-24
1
-0/+6
*
GH-128520: pathlib ABCs: reject empty pattern in `ReadablePath.glob()` (#127343)
Barney Gale
2025-03-24
1
-0/+2
*
GH-123599: Deprecate duplicate `pathname2url()` implementation (#127380)
Barney Gale
2025-03-20
1
-1/+12
*
GH-123599: Remove duplicate `url2pathname()` implementation (#127237)
Barney Gale
2025-03-19
1
-15/+2
*
GH-130614: pathlib ABCs: improve support for receiving path metadata (#131259)
Barney Gale
2025-03-16
3
-64/+92
*
GH-130614: pathlib ABCs: parametrize test suite for path copying (#131168)
Barney Gale
2025-03-13
1
-1/+1
*
GH-127381: pathlib ABCs: remove `case_sensitive` argument (#131024)
Barney Gale
2025-03-10
1
-13/+8
*
GH-130614: pathlib ABCs: support alternate separator in `full_match()` (#130991)
Barney Gale
2025-03-09
1
-2/+3
*
GH-130614: pathlib ABCs: retain original separator in `with_name()` (#130990)
Barney Gale
2025-03-09
1
-1/+3
*
GH-128520: Merge `pathlib._local` into `pathlib` (#130748)
Barney Gale
2025-03-07
2
-1263/+1260
*
GH-128520: Merge `pathlib._abc` into `pathlib.types` (#130747)
Barney Gale
2025-03-03
2
-397/+393
*
GH-127381: pathlib ABCs: remove `WritablePath.mkdir()` arguments (#130611)
Barney Gale
2025-03-01
1
-1/+1
*
GH-127381: pathlib ABCs: remove `ReadablePath.exists()` and `is_*()` (#130520)
Barney Gale
2025-03-01
1
-32/+0
*
Revert "GH-116380: Speed up `glob.[i]glob()` by making fewer system calls. (#...
Barney Gale
2025-03-01
2
-8/+4
*
GH-116380: Speed up `glob.[i]glob()` by making fewer system calls. (#116392)
Barney Gale
2025-02-28
2
-4/+8
*
GH-130608: Remove `dirs_exist_ok` argument from `pathlib.Path.copy()` (#130610)
Barney Gale
2025-02-28
3
-14/+9
*
GH-125413: Add private `pathlib.Path` method to write metadata (#130238)
Barney Gale
2025-02-26
3
-174/+120
*
GH-125413: Fix stale metadata from `pathlib.Path.copy()` and `move()` (#130424)
Barney Gale
2025-02-24
2
-3/+7
*
GH-125413: pathlib ABCs: use caching `path.info.exists()` when globbing (#130...
Barney Gale
2025-02-24
1
-8/+5
*
GH-128520: More consistent type-checking behaviour in pathlib (#130199)
Barney Gale
2025-02-21
2
-18/+19
*
GH-127381: pathlib ABCs: remove `ReadablePath.rglob()` (#130207)
Barney Gale
2025-02-17
1
-10/+0
*
GH-125413: Add private metadata methods to `pathlib.Path.info` (#129897)
Barney Gale
2025-02-17
3
-203/+199
*
pathlib ABCs: remove caching of path parser case sensitivity (#130194)
Barney Gale
2025-02-16
1
-11/+4
*
GH-128520: Subclass `abc.ABC` in `pathlib._abc` (#128745)
Barney Gale
2025-02-16
2
-20/+95
*
GH-125413: Move `pathlib.Path.copy()` implementation alongside `Path.info` (#...
Barney Gale
2025-02-09
3
-300/+297
*
GH-129835: Yield path with trailing slash from `ReadablePath.glob('')` (#129836)
Barney Gale
2025-02-08
2
-2/+2
*
GH-125413: Add `pathlib.Path.info` attribute (#127730)
Barney Gale
2025-02-08
4
-57/+224
*
GH-127381: pathlib ABCs: remove `JoinablePath.match()` (#129147)
Barney Gale
2025-01-28
2
-27/+26
*
GH-128520: Make `pathlib._abc.WritablePath` a sibling of `ReadablePath` (#129...
Barney Gale
2025-01-21
2
-59/+135
*
GH-128520: Divide pathlib ABCs into three classes (#128523)
Barney Gale
2025-01-11
3
-60/+74
*
GH-127381: pathlib ABCs: remove `PathBase.move()` and `move_into()` (#128337)
Barney Gale
2025-01-04
2
-35/+30
*
GH-127381: pathlib ABCs: remove uncommon `PurePathBase` methods (#127853)
Barney Gale
2024-12-29
3
-67/+5
*
GH-127381: pathlib ABCs: remove `PathBase.stat()` (#128334)
Barney Gale
2024-12-29
2
-30/+13
*
GH-127807: pathlib ABCs: move private copying methods to dedicated class (#12...
Barney Gale
2024-12-22
3
-248/+261
*
GH-127807: pathlib ABCs: remove a few private attributes (#127851)
Barney Gale
2024-12-22
2
-56/+64
*
GH-127807: pathlib ABCs: remove `PurePathBase._raw_paths` (#127883)
Barney Gale
2024-12-22
3
-40/+38
*
GH-127807: pathlib ABCs: remove `PathBase._unsupported_msg()` (#127855)
Barney Gale
2024-12-12
3
-35/+41
[next]