-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
bpo-31307: Allow use of bytes object as a single argument in ConfigParser.read #3420
Conversation
Lib/test/test_configparser.py
Outdated
@@ -739,6 +740,18 @@ def test_read_returns_file_list(self): | |||
cf = self.newconfig() | |||
parsed_files = cf.read([]) | |||
self.assertEqual(parsed_files, []) | |||
# check when passing an existing bytestring path |
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.
test_read_returns_file_list
is already too long, could you move it a separate test case?
@@ -0,0 +1 @@ | |||
Allow use of bytes objects for arguments to configparser.ConfigParser.read. |
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.
Please add "Patch by Vincent Michel.".
@@ -0,0 +1 @@ | |||
Allow use of bytes objects for arguments to configparser.ConfigParser.read. |
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.
:meth:`configparser.ConfigParser.read`
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
@berkerpeksag Thanks for the review. I have made the requested changes; please review again. |
Thanks for making the requested changes! @merwok, @berkerpeksag: please review the changes made to this pull request. |
Thanks! |
Thanks! ✨ 🍰 ✨ |
Fix issue bpo-31307 and bpo-29627.
https://bugs.python.org/issue31307