diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-04-15 13:55:10 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-15 13:55:10 (GMT) |
commit | 986eaa86da7ebac4c71a09db88706eea6d89664c (patch) | |
tree | ea3ba3afe99bee8c837adc869806dedd1bf5f8ac /Lib/pydoc.py | |
parent | d7ffa5820733a528d9ab87ee567738e2d3fd7126 (diff) | |
download | cpython-986eaa86da7ebac4c71a09db88706eea6d89664c.zip cpython-986eaa86da7ebac4c71a09db88706eea6d89664c.tar.gz cpython-986eaa86da7ebac4c71a09db88706eea6d89664c.tar.bz2 |
bpo-33185: Improve wording and markup (GH-6477)
Adds some working and markup fixes that I missed
in the initial commit for this issue.
(Follow-up to GH-6419)
(cherry picked from commit 1a5c4bdb6ecc6a8b19ff33bde323ab188ed60977)
Co-authored-by: Nick Coghlan <ncoghlan@gmail.com>
Diffstat (limited to 'Lib/pydoc.py')
-rw-r--r-- | Lib/pydoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 735ad9d..e7a1655 100644 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -2643,7 +2643,7 @@ def _get_revised_path(given_path, argv0): # Note: the tests only cover _get_revised_path, not _adjust_cli_path itself def _adjust_cli_sys_path(): - """Ensures current directory is on sys.path, and __main__ directory is not + """Ensures current directory is on sys.path, and __main__ directory is not. Exception: __main__ dir is left alone if it's also pydoc's directory. """ |