From 597f9c914b22751eada65a11ae118409d89abce0 Mon Sep 17 00:00:00 2001 From: Vishal Pandey Date: Sat, 4 Dec 2021 17:10:48 +0530 Subject: [PATCH] Fixed documentation typo in compileall.py --- Lib/compileall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/compileall.py b/Lib/compileall.py index 3755e76ba813f5..330a90786efc5f 100644 --- a/Lib/compileall.py +++ b/Lib/compileall.py @@ -4,7 +4,7 @@ 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.)