diff options
Diffstat (limited to 'Doc')
-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 b416bf7..535552d 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -210,7 +210,7 @@ ZipFile Objects password used for encrypted files. Calling :meth:`.open` on a closed ZipFile will raise a :exc:`RuntimeError`. - :func:`~ZipFile.open` is also a context manager and therefore supports the + :meth:`~ZipFile.open` is also a context manager and therefore supports the :keyword:`with` statement:: with ZipFile('spam.zip') as myzip: |