diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-10-27 20:07:07 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-27 20:07:07 (GMT) |
commit | 9dfbcf83c66ddcb2c8f2451cb3e65c5036bdec84 (patch) | |
tree | 6800ff0b24f8a14b75b4bef9380d83901071ac69 /Doc/library | |
parent | 8e5e37e5de319e37b263fbea4b463b8ef0f834c4 (diff) | |
download | cpython-9dfbcf83c66ddcb2c8f2451cb3e65c5036bdec84.zip cpython-9dfbcf83c66ddcb2c8f2451cb3e65c5036bdec84.tar.gz cpython-9dfbcf83c66ddcb2c8f2451cb3e65c5036bdec84.tar.bz2 |
Fix typo in zipfile documentation. (GH-10151) (GH-10154)
(cherry picked from commit 40bf6cff22185b8ebaab14789e81cff22fbf2275)
Co-authored-by: nsrip <nick.ripley@me.com>
Diffstat (limited to 'Doc/library')
-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 a5d4211..b7563f6 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -347,7 +347,7 @@ ZipFile Objects Return the name of the first bad file, or else return ``None``. .. versionchanged:: 3.6 - Calling :meth:`testfile` on a closed ZipFile will raise a + Calling :meth:`testzip` on a closed ZipFile will raise a :exc:`ValueError`. Previously, a :exc:`RuntimeError` was raised. |