Madison May added the comment:

>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?

----------
nosy: +madison.may

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue18828>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to