From: Samuel Sloniker Date: Thu, 7 Jul 2022 19:59:29 +0000 (-0700) Subject: gh-93654: Add module docstring to pathlib (GH-94611) X-Git-Tag: v3.12.0a1~1002 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=afd6a37ad159cf7cc632ee4680cd50cef0ceb006;p=thirdparty%2FPython%2Fcpython.git gh-93654: Add module docstring to pathlib (GH-94611) Issue: gh-93654 --- diff --git a/Lib/pathlib.py b/Lib/pathlib.py index bb440c9d5721..69e7d558a056 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