diff options
Diffstat (limited to 'Doc/library/zipfile.rst')
-rw-r--r-- | Doc/library/zipfile.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/zipfile.rst b/Doc/library/zipfile.rst index 3ca20de..f7303ea 100644 --- a/Doc/library/zipfile.rst +++ b/Doc/library/zipfile.rst @@ -384,9 +384,6 @@ The :class:`PyZipFile` constructor takes the same parameters as the .. method:: PyZipFile.writepy(pathname, basename='', filterfunc=None) - .. versionadded:: 3.4 - The *filterfunc* parameter. - Search for files :file:`\*.py` and add the corresponding file to the archive. @@ -419,6 +416,9 @@ The :class:`PyZipFile` constructor takes the same parameters as the test/bogus/__init__.pyc # Subpackage directory test/bogus/myfile.pyc # Submodule test.bogus.myfile + .. versionadded:: 3.4 + The *filterfunc* parameter. + .. _zipinfo-objects: |