-
-
Notifications
You must be signed in to change notification settings - Fork 32k
bpo-23328 Allow / character in username,password fields in _PROXY envvars. #23973
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
@orsenthil: Please replace |
Thanks @orsenthil for the PR 🌮🎉.. I'm working now to backport this PR to: 3.8, 3.9. |
Sorry @orsenthil, I had trouble checking out the |
…honGH-23973) (cherry picked from commit 030a713) Co-authored-by: Senthil Kumaran <[email protected]>
GH-23992 is a backport of this pull request to the 3.8 branch. |
Thanks @orsenthil for the PR 🌮🎉.. I'm working now to backport this PR to: 3.9. |
…honGH-23973) (cherry picked from commit 030a713) Co-authored-by: Senthil Kumaran <[email protected]>
GH-23993 is a backport of this pull request to the 3.9 branch. |
…23973) (cherry picked from commit 030a713) Co-authored-by: Senthil Kumaran <[email protected]>
…23973) (#23992) (cherry picked from commit 030a713) Co-authored-by: Senthil Kumaran <[email protected]>
bpo-23328 Allow / character in username,password fields in _PROXY envvars.
When urllib was using _parse_proxy method to read proxies from environ variables, if the env had a username, password component and if those had an un-encoded '/' character, the parsing failed.
This change will not break any existing parsing behavior and is localized to username,password scenarios with '/' character in them.
https://bugs.python.org/issue23328