diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-02 11:28:05 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-02 11:28:05 (GMT) |
commit | d4198c42349206149fa7b94097137eb4fc9b02e8 (patch) | |
tree | 73ea831ec8b1699d258fff48951a46a5bcd98a7b | |
parent | e080a7a5d4bbdb59fb29a0f38ac278869e978e6b (diff) | |
parent | 44b8cbfcba9d11469cf975c128b777ff512ddf61 (diff) | |
download | cpython-d4198c42349206149fa7b94097137eb4fc9b02e8.zip cpython-d4198c42349206149fa7b94097137eb4fc9b02e8.tar.gz cpython-d4198c42349206149fa7b94097137eb4fc9b02e8.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 54f9b4b..b00e26d 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 ``*``) |