-
-
Notifications
You must be signed in to change notification settings - Fork 31.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Several AttributeError in zipfile seek() methods #78216
Comments
The misprint in the file lib/zipfile.py in the line 704 leads to AttributeError: '_SharedFile' object has no attribute 'writing' "self.writing()" should be replaced by "self._writing()". I also think this code shold be covered by tests. |
I think the line 1031 also contains the misprint and will raise NameError.
"zipfile." is not correct code in this place. |
Hi Evegeny, I was able to reproduce the issue, if it's all right for you I would like to post a PR to solve the issue and extend the test suite od this module. |
Hi Rémi, it would be great if you posted a PR. |
Little word to say I am working on at EuroPython 2018. |
Thank you for your report Evgeny and for your PR Mickaël! |
Had the same issue with python 3.7 and went back to python 3.6. There are no issues with python 3.6.4 |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: