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.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-110109: Move pathlib ABCs to new `pathlib._abc` module. (#112881)
Barney Gale
2023-12-09
1
-1650/+0
*
GH-110109: Add `pathlib._PurePathBase` (#110670)
Barney Gale
2023-12-08
1
-36/+47
*
GH-112727: Speed up `pathlib.Path.absolute()` (#112728)
Barney Gale
2023-12-04
1
-6/+14
*
gh-103363: Add follow_symlinks argument to `pathlib.Path.owner()` and `group(...
Kamil Turek
2023-12-04
1
-6/+8
*
gh-112405: Optimise `pathlib.Path.relative_to` (#112406)
Alex Waygood
2023-11-26
1
-1/+2
*
GH-77621: Delay some imports from pathlib (#112244)
Barney Gale
2023-11-25
1
-5/+9
*
GH-112361: Speed up pathlib by removing some temporary objects. (#112362)
Barney Gale
2023-11-25
1
-20/+12
*
gh-110745: add a newline argument to pathlib.Path.read_text (#110880)
Junya Okabe
2023-11-21
1
-2/+2
*
GH-110109: Speed up `pathlib._PathBase.resolve()` (#110412)
Barney Gale
2023-11-17
1
-22/+17
*
GH-110109: Churn `pathlib.PurePath` methods (#112012)
Barney Gale
2023-11-17
1
-120/+120
*
GH-72904: Add `glob.translate()` function (#106703)
Barney Gale
2023-11-13
1
-104/+21
*
GH-111429: Speed up `pathlib.PurePath.[is_]relative_to()` (#111431)
Barney Gale
2023-11-12
1
-4/+8
*
gh-111259: Optimize recursive wildcards in pathlib (GH-111303)
Serhiy Storchaka
2023-10-26
1
-3/+3
*
GH-110488: Fix two small issues in `pathlib.PurePath.with_name()` (#110651)
Barney Gale
2023-10-11
1
-2/+1
*
GH-107465: Add `pathlib.Path.from_uri()` classmethod. (#107640)
Barney Gale
2023-10-01
1
-5/+35
*
GH-89812: Add `pathlib._PathBase` (#106337)
Barney Gale
2023-09-30
1
-87/+359
*
GH-109187: Improve symlink loop handling in `pathlib.Path.resolve()` (GH-109192)
Barney Gale
2023-09-26
1
-20/+1
*
GH-78722: Raise exceptions from `pathlib.Path.iterdir()` without delay. (#107...
Barney Gale
2023-09-02
1
-2/+1
*
GH-70303: Emit FutureWarning when pathlib glob pattern ends with `**` (GH-105...
Barney Gale
2023-08-04
1
-0/+5
*
gh-105002: [pathlib] Fix relative_to with walk_up=True using ".." (#107014)
János Kukovecz
2023-07-26
1
-2/+4
*
GH-100502: Add `pathlib.PurePath.pathmod` attribute (GH-106533)
Barney Gale
2023-07-19
1
-42/+42
*
GH-106330: Fix matching of empty path in `pathlib.PurePath.match()` (GH-106331)
Barney Gale
2023-07-03
1
-2/+6
*
GH-105793: Add follow_symlinks argument to `pathlib.Path.is_dir()` and `is_fi...
Barney Gale
2023-06-26
1
-4/+4
*
GH-89812: Add `pathlib.UnsupportedOperation` (GH-105926)
Barney Gale
2023-06-22
1
-7/+15
*
GH-104996: Defer joining of `pathlib.PurePath()` arguments. (GH-104999)
Barney Gale
2023-06-07
1
-17/+27
*
GH-102613: Fast recursive globbing in `pathlib.Path.glob()` (GH-104512)
Barney Gale
2023-06-06
1
-136/+133
*
GH-73435: Implement recursive wildcards in `pathlib.PurePath.match()` (#101398)
Barney Gale
2023-05-30
1
-14/+85
*
GH-104898: Revert pathlib os.PathLike registration change. (GH-105073)
Barney Gale
2023-05-29
1
-1/+5
*
GH-77609: Add follow_symlinks argument to `pathlib.Path.glob()` (GH-102616)
Barney Gale
2023-05-29
1
-19/+21
*
GH-103631: Fix `PurePosixPath(PureWindowsPath(...))` separator handling (GH-1...
Barney Gale
2023-05-26
1
-0/+3
*
GH-104947: Make pathlib.PureWindowsPath comparisons consistent across platfor...
Barney Gale
2023-05-26
1
-1/+4
*
GH-104898: Add __slots__ to os.PathLike (GH-104899)
Barney Gale
2023-05-25
1
-5/+1
*
GH-83863: Drop support for using `pathlib.Path` objects as context managers (...
Barney Gale
2023-05-23
1
-19/+0
*
GH-104484: Add case_sensitive argument to `pathlib.PurePath.match()` (GH-104565)
thirumurugan
2023-05-18
1
-6/+14
*
GH-102613: Fix recursion error from `pathlib.Path.glob()` (GH-104373)
Barney Gale
2023-05-15
1
-20/+5
*
GH-90208: Suppress OSError exceptions from `pathlib.Path.glob()` (GH-104141)
Barney Gale
2023-05-11
1
-20/+13
*
GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292)
Barney Gale
2023-05-10
1
-2/+2
*
GH-102613: Improve performance of `pathlib.Path.rglob()` (GH-104244)
Barney Gale
2023-05-07
1
-17/+37
*
GH-89812: Churn `pathlib.Path` methods (GH-104243)
Barney Gale
2023-05-07
1
-303/+303
*
GH-103548: Improve performance of `pathlib.Path.[is_]absolute()` (GH-103549)
Barney Gale
2023-05-06
1
-1/+10
*
GH-100479: Add `pathlib.PurePath.with_segments()` (GH-103975)
Barney Gale
2023-05-05
1
-30/+36
*
GH-81079: Add case_sensitive argument to `pathlib.Path.glob()` (GH-102710)
Barney Gale
2023-05-04
1
-15/+19
*
GH-104114: Fix `pathlib.WindowsPath.glob()` use of literal pattern segment ca...
Barney Gale
2023-05-03
1
-39/+13
*
GH-89769: `pathlib.Path.glob()`: do not follow symlinks when checking for pre...
andrei kulakov
2023-05-03
1
-3/+7
*
GH-104102: Optimize `pathlib.Path.glob()` handling of `../` pattern segments ...
Barney Gale
2023-05-02
1
-0/+12
*
GH-104104: Optimize `pathlib.Path.glob()` by avoiding repeated calls to `os.p...
Barney Gale
2023-05-02
1
-11/+14
*
GH-103525: Improve exception message from `pathlib.PurePath()` (GH-103526)
Barney Gale
2023-05-02
1
-14/+23
*
GH-78079: Fix UNC device path root normalization in pathlib (GH-102003)
Barney Gale
2023-04-14
1
-3/+8
*
GH-101362: Omit path anchor from `pathlib.PurePath()._parts` (GH-102476)
Barney Gale
2023-04-09
1
-65/+106
*
GH-76846, GH-85281: Call `__new__()` and `__init__()` on pathlib subclasses (...
Barney Gale
2023-04-03
1
-67/+78
[next]