summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Sloniker <sam@kj7rrv.com>2022-07-07 19:59:29 (GMT)
committerGitHub <noreply@github.com>2022-07-07 19:59:29 (GMT)
commitafd6a37ad159cf7cc632ee4680cd50cef0ceb006 (patch)
treebf369732986cc119083fb6702debfd910c7056f0
parentb6558d768f19584ad724be23030603280f9e6361 (diff)
downloadcpython-afd6a37ad159cf7cc632ee4680cd50cef0ceb006.zip
cpython-afd6a37ad159cf7cc632ee4680cd50cef0ceb006.tar.gz
cpython-afd6a37ad159cf7cc632ee4680cd50cef0ceb006.tar.bz2
gh-93654: Add module docstring to pathlib (GH-94611)
Issue: gh-93654
-rw-r--r--Lib/pathlib.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/pathlib.py b/Lib/pathlib.py
index bb440c9..69e7d55 100644
--- a/Lib/pathlib.py
+++ b/Lib/pathlib.py
@@ -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