diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-02 11:27:30 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-02 11:27:30 (GMT) |
commit | 44b8cbfcba9d11469cf975c128b777ff512ddf61 (patch) | |
tree | 1c816597e598b524b88c80240650918780369654 | |
parent | 1a4ed4ce1839646d64b5e147ea65f44ca5fcfefb (diff) | |
download | cpython-44b8cbfcba9d11469cf975c128b777ff512ddf61.zip cpython-44b8cbfcba9d11469cf975c128b777ff512ddf61.tar.gz cpython-44b8cbfcba9d11469cf975c128b777ff512ddf61.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 3c1f5f1..d210720 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -218,7 +218,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 ``*``) |