8000 GH-89812: Add `pathlib._PurePathExt` by barneygale · Pull Request #104810 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-89812: Add pathlib._PurePathExt #104810

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 20 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Lib/pathlib.py
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
barneygale and AlexWaygood authored May 24, 2023
commit 68d28912f47a3c280f3da4a01a1aadfcc318043f
2 changes: 1 addition & 1 deletion Lib/pathlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def __repr__(self):
return "<{}.parents>".format(type(self._path).__name__)


class _BasePurePath(object):
class _BasePurePath:
"""Base class for manipulating paths using only lexical operations.

This class does not provide the methods __fspath__, __bytes__ or as_uri.
Expand Down
0