]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-93654: Add module docstring to pathlib (GH-94611)
authorSamuel Sloniker <sam@kj7rrv.com>
Thu, 7 Jul 2022 19:59:29 +0000 (12:59 -0700)
committerGitHub <noreply@github.com>
Thu, 7 Jul 2022 19:59:29 +0000 (12:59 -0700)
Issue: gh-93654

Lib/pathlib.py

index bb440c9d57216a1af0c754df1e31fe1c6af078c4..69e7d558a056fc48093fef7e6300de9fced9554b 100644 (file)
@@ -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