[Python-checkins] gh-93654: Add module docstring to pathlib (GH-94611)

miss-islington webhook-mailer at python.org
Thu Jul 7 15:59:47 EDT 2022


https://github.com/python/cpython/commit/afd6a37ad159cf7cc632ee4680cd50cef0ceb006
commit: afd6a37ad159cf7cc632ee4680cd50cef0ceb006
branch: main
author: Samuel Sloniker <sam at kj7rrv.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2022-07-07T12:59:29-07:00
summary:

gh-93654: Add module docstring to pathlib (GH-94611)



Issue: gh-93654

files:
M Lib/pathlib.py

diff --git a/Lib/pathlib.py b/Lib/pathlib.py
index bb440c9d57216..69e7d558a056f 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



More information about the Python-checkins mailing list