diff options
author | Barney Gale <barney.gale@gmail.com> | 2023-09-30 14:45:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 14:45:01 (GMT) |
commit | 89966a694b54f81510f06a35b1406d56a2f2c8c5 (patch) | |
tree | 5ad5241ce7c0d9bc4c740fd24a6abb6a39f773fc /Misc | |
parent | 0449fe999d56ba795a852d83380fe06514139935 (diff) | |
download | cpython-89966a694b54f81510f06a35b1406d56a2f2c8c5.zip cpython-89966a694b54f81510f06a35b1406d56a2f2c8c5.tar.gz cpython-89966a694b54f81510f06a35b1406d56a2f2c8c5.tar.bz2 |
GH-89812: Add `pathlib._PathBase` (#106337)
Add private `pathlib._PathBase` class. This will be used by an experimental PyPI package to incubate a `tarfile.TarPath` class.
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-07-03-20-23-56.gh-issue-89812.cFkDOE.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-07-03-20-23-56.gh-issue-89812.cFkDOE.rst b/Misc/NEWS.d/next/Library/2023-07-03-20-23-56.gh-issue-89812.cFkDOE.rst new file mode 100644 index 0000000..a4221fc --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-07-03-20-23-56.gh-issue-89812.cFkDOE.rst @@ -0,0 +1,2 @@ +Add private ``pathlib._PathBase`` class, which provides experimental support +for virtual filesystems, and may be made public in a future version of Python. |