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
/
Doc
/
library
/
pathlib.rst
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.13] GH-119054: Add "Permissions and ownership" section to pathlib docs. (G...
Barney Gale
2024-06-24
1
-48/+51
*
[3.13] GH-119054: Add "Renaming and deleting" section to pathlib docs. (GH-12...
Miss Islington (bot)
2024-06-13
1
-60/+64
*
[3.13] GH-119054: Add "Creating files and directories" section to pathlib doc...
Miss Islington (bot)
2024-06-13
1
-79/+86
*
[3.13] GH-119054: Add "Reading directories" section to pathlib docs (GH-11995...
Barney Gale
2024-06-07
1
-96/+103
*
[3.13] GH-119054: Add "Reading and writing files" section to pathlib docs (GH...
Miss Islington (bot)
2024-06-02
1
-79/+84
*
[3.13] GH-119054: Add "Querying file type and status" section to pathlib docs...
Barney Gale
2024-06-02
1
-173/+178
*
[3.13] Format None, True, False and NotImplemented as literals (GH-118758) (G...
Miss Islington (bot)
2024-05-08
1
-2/+2
*
[3.13] docs: module page titles should not start with a link to themselves (G...
Miss Islington (bot)
2024-05-08
1
-3/+2
*
GH-115060: Speed up `pathlib.Path.glob()` by omitting initial `stat()` (#117831)
Barney Gale
2024-04-13
1
-4/+5
*
GH-77609: Add recurse_symlinks argument to `pathlib.Path.glob()` (#117311)
Barney Gale
2024-04-05
1
-13/+8
*
GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513)
Barney Gale
2024-03-31
1
-2/+2
*
GH-106747: Document another difference between `glob` and `pathlib`. (#116518)
Barney Gale
2024-03-22
1
-0/+4
*
GH-113838: Add "Comparison to os.path" section to pathlib docs (#115926)
Barney Gale
2024-03-15
1
-19/+44
*
Docs: fix broken links (#116651)
Mariusz Felisiak
2024-03-13
1
-1/+1
*
GH-101112: Add "pattern language" section to pathlib docs (#114030)
Barney Gale
2024-02-26
1
-56/+103
*
GH-70303: Make `pathlib.Path.glob('**')` return both files and directories (#...
Barney Gale
2024-01-30
1
-3/+2
*
gh-88569: add `ntpath.isreserved()` (#95486)
Barney Gale
2024-01-26
1
-7/+6
*
GH-73435: Add `pathlib.PurePath.full_match()` (#114350)
Barney Gale
2024-01-26
1
-30/+30
*
GH-105900: Fix `pathlib.Path.symlink_to(target_is_directory=...)` docs (#114035)
Barney Gale
2024-01-23
1
-3/+7
*
GH-82695: Clarify `pathlib.Path.mkdir()` documentation (#114032)
Barney Gale
2024-01-23
1
-3/+3
*
GH-99334: Explain that `PurePath.is_relative_to()` is purely lexical. (#114031)
Barney Gale
2024-01-23
1
-0/+7
*
GH-79634: Accept path-like objects as pathlib glob patterns. (#114017)
Barney Gale
2024-01-20
1
-0/+6
*
GH-110109: pathlib docs: bring `from_uri()` and `as_uri()` together. (#110312)
Barney Gale
2024-01-16
1
-49/+61
*
GH-78988: Document `pathlib.Path.glob()` exception propagation. (#114036)
Barney Gale
2024-01-16
1
-0/+4
*
gh-112758: Updated pathlib documentation for PurePath.match (#112814)
Taylor Packard
2023-12-08
1
-0/+3
*
gh-101100: Silence Sphinx warnings when `ntpath` or `posixpath` are reference...
Alex Waygood
2023-12-07
1
-1/+1
*
gh-103363: Add follow_symlinks argument to `pathlib.Path.owner()` and `group(...
Kamil Turek
2023-12-04
1
-4/+16
*
gh-110745: add a newline argument to pathlib.Path.read_text (#110880)
Junya Okabe
2023-11-21
1
-1/+3
*
GH-107465: Add `pathlib.Path.from_uri()` classmethod. (#107640)
Barney Gale
2023-10-01
1
-0/+36
*
GH-109187: Improve symlink loop handling in `pathlib.Path.resolve()` (GH-109192)
Barney Gale
2023-09-26
1
-5/+9
*
GH-70303: Emit FutureWarning when pathlib glob pattern ends with `**` (GH-105...
Barney Gale
2023-08-04
1
-0/+5
*
GH-100502: Add `pathlib.PurePath.pathmod` attribute (GH-106533)
Barney Gale
2023-07-19
1
-0/+7
*
docs: clarify Path.suffix (GH-106650)
Ned Batchelder
2023-07-13
1
-2/+3
*
GH-105793: Add follow_symlinks argument to `pathlib.Path.is_dir()` and `is_fi...
Barney Gale
2023-06-26
1
-6/+18
*
GH-104375: Use `versionchanged` to describe new arguments in pathlib docs (GH...
Barney Gale
2023-06-24
1
-14/+14
*
GH-89812: Add `pathlib.UnsupportedOperation` (GH-105926)
Barney Gale
2023-06-22
1
-1/+43
*
GH-102613: Fast recursive globbing in `pathlib.Path.glob()` (GH-104512)
Barney Gale
2023-06-06
1
-4/+8
*
GH-73435: Implement recursive wildcards in `pathlib.PurePath.match()` (#101398)
Barney Gale
2023-05-30
1
-0/+11
*
GH-77609: Add follow_symlinks argument to `pathlib.Path.glob()` (GH-102616)
Barney Gale
2023-05-29
1
-2/+18
*
GH-104484: Add case_sensitive argument to `pathlib.PurePath.match()` (GH-104565)
thirumurugan
2023-05-18
1
-1/+6
*
gh-103960: Dark mode: invert image brightness (#103983)
Hugo van Kemenade
2023-05-10
1
-0/+1
*
GH-100479: Add `pathlib.PurePath.with_segments()` (GH-103975)
Barney Gale
2023-05-05
1
-2/+26
*
GH-81079: Add case_sensitive argument to `pathlib.Path.glob()` (GH-102710)
Barney Gale
2023-05-04
1
-2/+18
*
GH-89769: `pathlib.Path.glob()`: do not follow symlinks when checking for pre...
andrei kulakov
2023-05-03
1
-6/+9
*
GH-101362: Optimise PurePath(PurePath(...)) (GH-101667)
Barney Gale
2023-03-05
1
-2/+3
*
GH-101898: Fix missing term references for hashable definition (#101899)
Furkan Onder
2023-02-14
1
-1/+1
*
gh-86610: Use attribute directive in docs for pathlib.PurePath (#101114)
Barney Gale
2023-01-20
1
-14/+14
*
GH-101112: Specify type of pattern for Path.rglob (#101132)
Jürgen Gmach
2023-01-20
1
-1/+2
*
gh-87691: clarify use of anchor in pathlib docs (#100782)
Shantanu
2023-01-06
1
-8/+8
*
gh-87691: add an absolute path pathlib example in / operator docs (GH-100737)
Shantanu
2023-01-05
1
-1/+8
[next]