From 3479e45693eb4f0836ddd8c501514445a8499e92 Mon Sep 17 00:00:00 2001 From: anthony sottile Date: Wed, 22 Jul 2026 09:41:05 -0400 Subject: [PATCH] Remove `from stat import *` recommendation from `stat.py` docstring (#154486) --- Lib/stat.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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() -- 2.47.3