diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-06-02 10:07:09 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-06-02 10:07:09 (GMT) |
commit | e26da7c03a714faa115fe6b708ef0730119aa4b3 (patch) | |
tree | 26d6a9584ddde0d84f1011fe87662b3b84a39428 /Lib/site.py | |
parent | 1b207c55a446ab8b8bae2efc8407ee130ba62012 (diff) | |
download | cpython-e26da7c03a714faa115fe6b708ef0730119aa4b3.zip cpython-e26da7c03a714faa115fe6b708ef0730119aa4b3.tar.gz cpython-e26da7c03a714faa115fe6b708ef0730119aa4b3.tar.bz2 |
Issue #27171: Fix typos in documentation, comments, and test function names
Diffstat (limited to 'Lib/site.py')
-rw-r--r-- | Lib/site.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/site.py b/Lib/site.py index 3a8d1c3..3f78ef5 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -59,7 +59,7 @@ because bar.pth comes alphabetically before foo.pth; and spam is omitted because it is not mentioned in either path configuration file. The readline module is also automatically configured to enable -completion for systems that support it. This can be overriden in +completion for systems that support it. This can be overridden in sitecustomize, usercustomize or PYTHONSTARTUP. After these operations, an attempt is made to import a module @@ -379,7 +379,7 @@ def enablerlcompleter(): If the readline module can be imported, the hook will set the Tab key as completion key and register ~/.python_history as history file. - This can be overriden in the sitecustomize or usercustomize module, + This can be overridden in the sitecustomize or usercustomize module, or in a PYTHONSTARTUP file. """ def register_readline(): |