mirror of https://github.com/python/cpython
gh-93654: Add module docstring to pathlib (GH-94611)
Issue: gh-93654
This commit is contained in:
parent
b6558d768f
commit
afd6a37ad1
|
@ -1,3 +1,10 @@
|
|||
"""Object-oriented filesystem paths.
|
||||
|
||||
This module provides classes to represent abstract paths and concrete
|
||||
paths with operations that have semantics appropriate for different
|
||||
operating systems.
|
||||
"""
|
||||
|
||||
import fnmatch
|
||||
import functools
|
||||
import io
|
||||
|
|
Loading…
Reference in New Issue