bpo-37520: Correct behavior for zipfile.Path.parent (GH-14638)

* bpo-37520: Correct behavior for zipfile.Path.parent

* 📜🤖 Added by blurb_it.
This commit is contained in:
Jason R. Coombs 2019-07-07 17:37:50 -04:00 committed by GitHub
parent f6cdd3ff68
commit 38f44b4a4a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 1 deletions

View file

@ -2236,7 +2236,7 @@ class Path:
@property
def parent(self):
parent_at = posixpath.dirname(self.at)
parent_at = posixpath.dirname(self.at.rstrip('/'))
if parent_at:
parent_at += '/'
return self._next(parent_at)