diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-15 02:14:19 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-15 02:14:19 (GMT) |
commit | 6a8163a928f9ff04242580c09216431ddd39cdbc (patch) | |
tree | f488fcfc631d8663003cd5784bba970d3e6438f9 /Lib/os2emxpath.py | |
parent | 8feff8f1ddf870f4a68facf7127097cec97ebc39 (diff) | |
download | cpython-6a8163a928f9ff04242580c09216431ddd39cdbc.zip cpython-6a8163a928f9ff04242580c09216431ddd39cdbc.tar.gz cpython-6a8163a928f9ff04242580c09216431ddd39cdbc.tar.bz2 |
Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc
This affects documentation and code comments.
Diffstat (limited to 'Lib/os2emxpath.py')
-rw-r--r-- | Lib/os2emxpath.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/os2emxpath.py b/Lib/os2emxpath.py index 0b32d63..6691b7d 100644 --- a/Lib/os2emxpath.py +++ b/Lib/os2emxpath.py @@ -62,7 +62,7 @@ def splitunc(p): Return a 2-tuple (unc, rest); either part may be empty. If unc is not empty, it has the form '//host/mount' (or similar using backslashes). unc+rest is always the input path. - Paths containing drive letters never have an UNC part. + Paths containing drive letters never have a UNC part. """ if p[1:2] == ':': return '', p # Drive letter present @@ -105,7 +105,7 @@ lexists = exists # Is a path a directory? # Is a path a mount point? Either a root (with or without drive letter) -# or an UNC path with at most a / or \ after the mount point. +# or a UNC path with at most a / or \ after the mount point. def ismount(path): """Test whether a path is a mount point (defined as root of drive)""" |