This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mkleehammer
Recipients mkleehammer
Date 2018-07-23.23:17:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532387833.75.0.56676864532.issue34202@psf.upfronthosting.co.za>
In-reply-to
Content
ZipFile is documented to accept "path-like" objects but is failing when I try to create one.  I've distilled it down to this small test:

    import zipfile
    from pathlib import Path

    path = Path('test.zip')
    zf = zipfile.ZipFile(path, 'w')
    zf.writestr('test.txt', 'Hello, Sailor!')
    zf.close()

On macOS I'm getting this error:

Traceback (most recent call last):
  File "test.py", line 7, in <module>
    zf.writestr('test.txt', 'Hello, Sailor!')
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/zipfile.py", line 1644, in writestr
    with self.open(zinfo, mode='w') as dest:
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/zipfile.py", line 1348, in open
    return self._open_to_write(zinfo, force_zip64=force_zip64)
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/zipfile.py", line 1461, in _open_to_write
    self.fp.write(zinfo.FileHeader(zip64))
  File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/zipfile.py", line 721, in write
    n = self.fp.write(data)
AttributeError: 'PosixPath' object has no attribute 'write'

Using str(path) works fine.
History
Date User Action Args
2018-07-23 23:17:13mkleehammersetrecipients: + mkleehammer
2018-07-23 23:17:13mkleehammersetmessageid: <1532387833.75.0.56676864532.issue34202@psf.upfronthosting.co.za>
2018-07-23 23:17:13mkleehammerlinkissue34202 messages
2018-07-23 23:17:13mkleehammercreate