[issue16134] Add support for RTMP schemes to urlparse

2013-11-23 Thread Martin Panter
Martin Panter added the comment: Looks like Issue 9374 already covers most of this, with fixes in 2.7, 3.2 and 3.3. $ python3.3 Python 3.3.2 (default, May 16 2013, 23:40:52) [GCC 4.6.3] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from urllib.parse import

[issue16134] Add support for RTMP schemes to urlparse

2013-11-23 Thread Gregory P. Smith
Gregory P. Smith added the comment: i'd like to see a proposed change against the 3.4 standard library for this with tests. -- assignee: gregory.p.smith -> ___ Python tracker _

[issue16134] Add support for RTMP schemes to urlparse

2012-10-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: issue9374 - another related one which should be taken care. Which is simply reverting this: http://hg.python.org/cpython/diff/a0b3cb52816e/Lib/urllib/parse.py and informing in the DOCs that those globals are not available anymore. (But this should also be di

[issue16134] Add support for RTMP schemes to urlparse

2012-10-08 Thread Senthil Kumaran
Senthil Kumaran added the comment: Personally, I want to do away with all those scheme specific stuff, if we can. I have tried previously, but failed due to some backwards incompatibility. 3.4 gives a good chance/time to make those changes to get rid of those scheme specific stuff (again). So

[issue16134] Add support for RTMP schemes to urlparse

2012-10-05 Thread Gregory P. Smith
Changes by Gregory P. Smith : -- assignee: -> gregory.p.smith nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mail

[issue16134] Add support for RTMP schemes to urlparse

2012-10-05 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue16134] Add support for RTMP schemes to urlparse

2012-10-04 Thread Eric V. Smith
Eric V. Smith added the comment: As this is a feature request, it can only be applied to 3.4. I've modified the versions. -- components: +Library (Lib) nosy: +eric.smith versions: -Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 3.3, Python 3.5

[issue16134] Add support for RTMP schemes to urlparse

2012-10-04 Thread Jorge Gomes
New submission from Jorge Gomes: Please add support in urlparse for the family of RTMP schemes: rtmp rtmpe rtmps rtmpt I believe these schemes should be added to the following module variables: uses_relative uses_netloc uses_params uses_query [essentially, the one where rtsp already is] The RTM