From: Vishal Pandey Date: Sat, 4 Dec 2021 15:38:17 +0000 (+0530) Subject: Fixed documentation typo in compileall.py (GH-29912) X-Git-Tag: v3.11.0a3~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87a18deda43a9e512e8ca85daf363e9924f6db5f;p=thirdparty%2FPython%2Fcpython.git Fixed documentation typo in compileall.py (GH-29912) --- diff --git a/Lib/compileall.py b/Lib/compileall.py index 3755e76ba813..330a90786efc 100644 --- a/Lib/compileall.py +++ b/Lib/compileall.py @@ -4,7 +4,7 @@ When called as a script with arguments, this compiles the directories given as arguments recursively; the -l option prevents it from recursing into directories. -Without arguments, if compiles all modules on sys.path, without +Without arguments, it compiles all modules on sys.path, without recursing into subdirectories. (Even though it should do so for packages -- for now, you'll have to deal with packages separately.)