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 socketpair
Recipients socketpair
Date 2020-04-23.11:12:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1587640374.39.0.0313864696391.issue40373@roundup.psfhosted.org>
In-reply-to
Content
urlunsplit(('http+unix', '\x00qwe/asd', 'def', '', ''))                                                                       

gives:

'http+unix://\x00qwe/asd/def'

but should:

'http+unix://\x00qwe%2Fasd/def'

see https://github.com/msabramo/requests-unixsocket for examples of such URLs.

Workaround: build URL by hand, like `f'http+unix://{quote(..., safe='')}/....'`
History
Date User Action Args
2020-04-23 11:12:54socketpairsetrecipients: + socketpair
2020-04-23 11:12:54socketpairsetmessageid: <1587640374.39.0.0313864696391.issue40373@roundup.psfhosted.org>
2020-04-23 11:12:54socketpairlinkissue40373 messages
2020-04-23 11:12:53socketpaircreate