Skip to content
Prev Previous commit
Next Next commit
Remove speculation/promises from _AbstractPath docstring.
  • Loading branch information
barneygale committed Feb 21, 2022
commit 3312870453b38de035924ff5c1bc60b4a4770ef3
8 changes: 2 additions & 6 deletions Lib/pathlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -854,12 +854,8 @@ class PureWindowsPath(PurePath):


class _AbstractPath(PurePath, ABC):
"""PurePath subclass with abstract methods for making system calls.

In a future version of Python, the this class's interface may be exposed
as a public API, losing its underscore prefix. However, in its current
state it should be considered a private implementation detail with no
stability guarantees. Please direct feedback to bpo-24132.
"""Private PurePath subclass with abstract methods for opening files and
listing directories.
"""
__slots__ = ()

Expand Down