This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author f9n
Recipients f9n
Date 2019-08-14.17:37:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1565804245.33.0.663961239717.issue37853@roundup.psfhosted.org>
In-reply-to
Content
No problem for these:
  "http://localhost:9100"
  "http://user:password@localhost:9100"

But, these are problematic:
  "http://use#r:password@localhost:9100"
  "http://user:pass#word@localhost:9100"


```
from urllib.parse import urlparse

url = "http://us#er:123@localhost:9001/RPC2"
u = urlparse(url)
print(u)
# ParseResult(scheme='http', netloc='us', path='', params='', query='', fragment='er:123@localhost:9001/RPC2')
```
History
Date User Action Args
2019-08-14 17:37:25f9nsetrecipients: + f9n
2019-08-14 17:37:25f9nsetmessageid: <1565804245.33.0.663961239717.issue37853@roundup.psfhosted.org>
2019-08-14 17:37:25f9nlinkissue37853 messages
2019-08-14 17:37:25f9ncreate