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 madison.may
Recipients madison.may, mher
Date 2013-08-26.17:34:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377538458.61.0.378267212956.issue18828@psf.upfronthosting.co.za>
In-reply-to
Content
From urllib.parse:

    uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap',
                     'wais', 'file', 'https', 'shttp', 'mms',
                     'prospero', 'rtsp', 'rtspu', '', 'sftp',
                     'svn', 'svn+ssh']

From urllib.parse.urljoin (scheme='redis' and url='/1' in your example): 
    
    if scheme != bscheme or scheme not in uses_relative:
        return _coerce_result(url)

Should the 'redis' scheme be added to uses_relative, perhaps?
History
Date User Action Args
2013-08-26 17:34:18madison.maysetrecipients: + madison.may, mher
2013-08-26 17:34:18madison.maysetmessageid: <1377538458.61.0.378267212956.issue18828@psf.upfronthosting.co.za>
2013-08-26 17:34:18madison.maylinkissue18828 messages
2013-08-26 17:34:18madison.maycreate