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 berker.peksag
Recipients berker.peksag, madison.may, martin.panter, mher, orsenthil
Date 2013-09-02.08:59:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378112379.28.0.42114264148.issue18828@psf.upfronthosting.co.za>
In-reply-to
Content
How about adding a codecs.register like public API for 3.4+?

    import urllib.parse

    urllib.parse.schemes.register('redis', 'rtmp')

or:

    urllib.parse.urljoin('redis://localhost:6379/0', '/1', scheme='redis')

or just:

    urllib.parse.schemes.extend(['redis', 'rtmp'])
History
Date User Action Args
2013-09-02 08:59:39berker.peksagsetrecipients: + berker.peksag, orsenthil, mher, martin.panter, madison.may
2013-09-02 08:59:39berker.peksagsetmessageid: <1378112379.28.0.42114264148.issue18828@psf.upfronthosting.co.za>
2013-09-02 08:59:39berker.peksaglinkissue18828 messages
2013-09-02 08:59:38berker.peksagcreate