From afd6a37ad159cf7cc632ee4680cd50cef0ceb006 Mon Sep 17 00:00:00 2001 From: Samuel Sloniker Date: Thu, 7 Jul 2022 12:59:29 -0700 Subject: gh-93654: Add module docstring to pathlib (GH-94611) Issue: gh-93654 --- Lib/pathlib.py | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- cgit v0.12