From: anthony sottile Date: Wed, 22 Jul 2026 13:41:05 +0000 (-0400) Subject: Remove `from stat import *` recommendation from `stat.py` docstring (#154486) X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=3479e45693eb4f0836ddd8c501514445a8499e92;p=thirdparty%2FPython%2Fcpython.git Remove `from stat import *` recommendation from `stat.py` docstring (#154486) --- diff --git a/Lib/stat.py b/Lib/stat.py index 214c7917b5e0..76f02d7aa33d 100644 --- a/Lib/stat.py +++ b/Lib/stat.py @@ -1,7 +1,4 @@ -"""Constants/functions for interpreting results of os.stat() and os.lstat(). - -Suggested usage: from stat import * -""" +"""Constants/functions for interpreting results of os.stat() and os.lstat().""" # Indices for stat struct members in the tuple returned by os.stat()