summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pydoc.py
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-04-15 13:55:10 (GMT)
committerGitHub <noreply@github.com>2018-04-15 13:55:10 (GMT)
commit986eaa86da7ebac4c71a09db88706eea6d89664c (patch)
treeea3ba3afe99bee8c837adc869806dedd1bf5f8ac /Lib/test/test_pydoc.py
parentd7ffa5820733a528d9ab87ee567738e2d3fd7126 (diff)
downloadcpython-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/test/test_pydoc.py')
-rw-r--r--Lib/test/test_pydoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py
index 0064218..37af664 100644
--- a/Lib/test/test_pydoc.py
+++ b/Lib/test/test_pydoc.py
@@ -1103,7 +1103,7 @@ class TestInternalUtilities(unittest.TestCase):
return pydoc._get_revised_path(given_path, argv0)
def _get_starting_path(self):
- # Get a copy of sys.path without the current directory
+ # Get a copy of sys.path without the current directory.
clean_path = sys.path.copy()
for spelling in self.curdir_spellings:
for __ in range(clean_path.count(spelling)):