diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-02 11:27:02 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-02 11:27:02 (GMT) |
commit | dc6dc4bc3196383db028a365afcf516c835ef999 (patch) | |
tree | 3ae4acdd03f5553c6113f862351c6a0bb62174c9 | |
parent | 7c068750b611fe0298dd906bd9dc60cc38a03945 (diff) | |
download | cpython-dc6dc4bc3196383db028a365afcf516c835ef999.zip cpython-dc6dc4bc3196383db028a365afcf516c835ef999.tar.gz cpython-dc6dc4bc3196383db028a365afcf516c835ef999.tar.bz2 |
Fix a Cyrillic "C" inroduced into the docs by patch for issue #6972.
-rw-r--r-- | Doc/library/zipfile.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst index df24bb7..cf62d49 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -246,7 +246,7 @@ ZipFile Objects If a member filename is an absolute path, a drive/UNC sharepoint and leading (back)slashes will be stripped, e.g.: ``///foo/bar`` becomes - ``foo/bar`` on Unix, and ``ะก:\foo\bar`` becomes ``foo\bar`` on Windows. + ``foo/bar`` on Unix, and ``C:\foo\bar`` becomes ``foo\bar`` on Windows. And all ``".."`` components in a member filename will be removed, e.g.: ``../../foo../../ba..r`` becomes ``foo../ba..r``. On Windows illegal characters (``:``, ``<``, ``>``, ``|``, ``"``, ``?``, and ``*``) |