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 devkral
Recipients SilentGhost, devkral, orsenthil, steven.daprano
Date 2018-12-03.10:24:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543832655.08.0.788709270274.issue35377@psf.upfronthosting.co.za>
In-reply-to
Content
Ok, then the problem is in unsplit.
Because: :/// is not a valid url.

Next try: in urlunsplit:


if netloc or (scheme and scheme in uses_netloc and url[:2] != '//'):
    if url and url[:1] != '/' and scheme in ("file", ""): # my change
        url = '/' + url
History
Date User Action Args
2018-12-03 10:24:15devkralsetrecipients: + devkral, orsenthil, steven.daprano, SilentGhost
2018-12-03 10:24:15devkralsetmessageid: <1543832655.08.0.788709270274.issue35377@psf.upfronthosting.co.za>
2018-12-03 10:24:15devkrallinkissue35377 messages
2018-12-03 10:24:15devkralcreate