diff options
author | Samuel Sloniker <sam@kj7rrv.com> | 2022-07-07 19:59:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-07 19:59:29 (GMT) |
commit | afd6a37ad159cf7cc632ee4680cd50cef0ceb006 (patch) | |
tree | bf369732986cc119083fb6702debfd910c7056f0 | |
parent | b6558d768f19584ad724be23030603280f9e6361 (diff) | |
download | cpython-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.py | 7 |
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 |