diff options
author | Vishal Pandey <vishalpandeyviptsk@gmail.com> | 2021-12-04 15:38:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-04 15:38:17 (GMT) |
commit | 87a18deda43a9e512e8ca85daf363e9924f6db5f (patch) | |
tree | 242ca31f03a00199c3d5de0030791228d0fa10e5 /Lib | |
parent | 64be8d369b7e3878078dbef466804ae8be49c1cf (diff) | |
download | cpython-87a18deda43a9e512e8ca85daf363e9924f6db5f.zip cpython-87a18deda43a9e512e8ca85daf363e9924f6db5f.tar.gz cpython-87a18deda43a9e512e8ca85daf363e9924f6db5f.tar.bz2 |
Fixed documentation typo in compileall.py (GH-29912)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/compileall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py index 3755e76..330a907 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.) |