-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Fix urlsplit python3.7.6 #5222
Fix urlsplit python3.7.6 #5222
Conversation
do we need a changelog for that? |
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.
I just tried pytest tests/core/test_tracker_stores.py::test_get_db_url_with_port_in_host
(the test that previously failed on my machine). It passes now 👍
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.
If there wasn't an issue created for it I would say it's not necessary 👍
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.
👍
Proposed changes:
urlsplit("localhost:1234")
returnsParseResult(scheme='localhost', netloc='', path='1234', params='', query='', fragment='')
Status (please check what you already did):
black
(please check Readme for instructions)