-
-
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
GH-125866: Deprecate nturl2path
module
#131432
GH-125866: Deprecate nturl2path
module
#131432
Conversation
Add `tests.test_nturl2path` to exercise `nturl2path`. `nturl2path` is currently used by `urllib` and tested by `test_urllib`, but that will change when we deprecate `nturl2path` and add support for Windows paths/URLs in `urllib` itself.
nturl2path
modulenturl2path
module
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.
LGTM.
I split out the nturl2path tests 8 months ago. This PR does more and includes it. Maybe I'll close my PR after this merge? |
Thanks for the info - sorry I didn't spot your PR before. It looks like we arrived at a similar place. |
Deprecate the
nturl2path
module. Its functionality is merged intourllib.request
.Add
tests.test_nturl2path
to exercisenturl2path
, as it's no longer covered bytest_urllib
.urllib.request
#125866