diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2020-04-30 10:39:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-30 10:39:11 (GMT) |
commit | efb8dd5b3ec91f7d9458d3f203d748604d52b121 (patch) | |
tree | 467d2b16150bc700d5b0ce5135c95306e29a41c1 /Lib/compileall.py | |
parent | e488e300f5c01289c10906c2e53a8e43d6de32d8 (diff) | |
download | cpython-efb8dd5b3ec91f7d9458d3f203d748604d52b121.zip cpython-efb8dd5b3ec91f7d9458d3f203d748604d52b121.tar.gz cpython-efb8dd5b3ec91f7d9458d3f203d748604d52b121.tar.bz2 |
compileall: Fix typos in docstring (GH-19810)
Diffstat (limited to 'Lib/compileall.py')
-rw-r--r-- | Lib/compileall.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py index 1831ad7..abe6cff 100644 --- a/Lib/compileall.py +++ b/Lib/compileall.py @@ -66,7 +66,7 @@ def compile_dir(dir, maxlevels=None, ddir=None, force=False, workers: maximum number of parallel workers invalidation_mode: how the up-to-dateness of the pyc will be checked stripdir: part of path to left-strip from source file path - prependdir: path to prepend to beggining of original file path, applied + prependdir: path to prepend to beginning of original file path, applied after stripdir limit_sl_dest: ignore symlinks if they are pointing outside of the defined path @@ -136,7 +136,7 @@ def compile_file(fullname, ddir=None, force=False, rx=None, quiet=0, files each with one optimization level. invalidation_mode: how the up-to-dateness of the pyc will be checked stripdir: part of path to left-strip from source file path - prependdir: path to prepend to beggining of original file path, applied + prependdir: path to prepend to beginning of original file path, applied after stripdir limit_sl_dest: ignore symlinks if they are pointing outside of the defined path. |