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 conchylicultor
Recipients conchylicultor
Date 2020-10-19.20:58:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603141108.13.0.969027124293.issue42090@roundup.psfhosted.org>
In-reply-to
Content
The following code fail with zipfile.Path, but works with pathlib.Path:

```
path = path.joinpath().joinpath('other', 'other')
```

Zipfile: https://github.com/python/cpython/blob/95ad890a7b0341d8d2fde13f824bc24c65a8ece0/Lib/zipfile.py#L2363

```
def joinpath(self, add):
```

Pathlib: https://github.com/python/cpython/blob/95ad890a7b0341d8d2fde13f824bc24c65a8ece0/Lib/pathlib.py#L955

```
def joinpath(self, *args):
```
History
Date User Action Args
2020-10-19 20:58:28conchylicultorsetrecipients: + conchylicultor
2020-10-19 20:58:28conchylicultorsetmessageid: <1603141108.13.0.969027124293.issue42090@roundup.psfhosted.org>
2020-10-19 20:58:28conchylicultorlinkissue42090 messages
2020-10-19 20:58:28conchylicultorcreate