Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

[3.9] gh-67693: Fix urlunparse() and urlunsplit() for URIs with path starting with multiple slashes and no authority (GH-113563) #119027

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

Merged
merged 5 commits into from
Sep 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Readd a line change missing during cherry-picking from e237b25
  • Loading branch information
ambv committed Sep 5, 2024
commit ec82fe171a66090fce569fdaa9a26655b5b0de69
2 changes: 1 addition & 1 deletion 2 Lib/test/test_urlparse.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def checkRoundtrips(self, url, parsed, split, url2=None):
result.query, result.fragment)
self.assertEqual(t, split)
result2 = urllib.parse.urlunsplit(result)
self.assertEqual(result2, url)
self.assertEqual(result2, url2)
self.assertEqual(result2, result.geturl())

# check the fixpoint property of re-parsing the result of geturl()
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.