-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat(configparser): update to 3.11 #4595
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
Conversation
Lib/test/test_configparser.py
Outdated
@@ -521,7 +528,6 @@ def test_default_case_sensitivity(self): | |||
cf.get(self.default_section, "Foo"), "Bar", | |||
"could not locate option, expecting case-insensitive defaults") | |||
|
|||
@unittest.skipIf(os.name == "nt", "TODO: RUSTPYTHON, universal newlines") |
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.
probably need to add this again, it skipped the tests for windows (which are now failing)
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.
@DimitrisJim restored thanks
When I update a library from a newer version of CPython, I usually do this:
|
#4597 will make it simpler |
@fanninpm thanks for your suggestions, I was trying to follow |
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.
Thank you! many more tests run successful 😄
Test