mirror of https://github.com/python/cpython
Add module docstring for `pathlib._abc`. (#113691)
This commit is contained in:
parent
f20b151a1c
commit
21f83efd10
|
@ -1,3 +1,16 @@
|
|||
"""
|
||||
Abstract base classes for rich path objects.
|
||||
|
||||
This module is published as a PyPI package called "pathlib-abc".
|
||||
|
||||
This module is also a *PRIVATE* part of the Python standard library, where
|
||||
it's developed alongside pathlib. If it finds success and maturity as a PyPI
|
||||
package, it could become a public part of the standard library.
|
||||
|
||||
Two base classes are defined here -- PurePathBase and PathBase -- that
|
||||
resemble pathlib's PurePath and Path respectively.
|
||||
"""
|
||||
|
||||
import functools
|
||||
import posixpath
|
||||
from errno import ENOENT, ENOTDIR, EBADF, ELOOP, EINVAL
|
||||
|
|
Loading…
Reference in New Issue