-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Review of (explicit) encoding for files being created in text mode #1088
Conversation
…try#1027) This is minimal set of modifications, which fixed the problem. There are still more places, where files are open in text mode without explicit encoding, thus possibly failing on systems not using UTF-8 console encoding.
Note, that this PR includes modifications from PR #1085 |
Note, that my colleague @rhorenov have found, there is probably no need to port this PR into 1.0.0.x as this parts seems to be reimplemented there and is working well. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this!
There are some things that would be better changed in my opinion but overall I am willing to merge this once they are addressed.
all comments shall be resolved now (I feel a bit lost in the GitHub review procedure but hope to accept all the change requests). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good now. Thanks!
Fixes bug on Python 2.7, introduced in python-poetry#1088
Fixes bug on Python 2.7, introduced in #1088
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
see issue #1087
Includes changes for PR #1085