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 martin.panter
Recipients eric.araujo, ezio.melotti, martin.panter, nailor, oberstet, orsenthil, r.david.murray
Date 2013-11-24.02:08:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385258907.44.0.130734681862.issue13244@psf.upfronthosting.co.za>
In-reply-to
Content
Suspect this is now fixed in a generic way by Issue 9374. The fix seems to be 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 urlparse
>>> urlparse("ws://example.com/somewhere?foo=bar#dgdg")
ParseResult(scheme='ws', netloc='example.com', path='/somewhere', params='', query='foo=bar', fragment='dgdg')
History
Date User Action Args
2013-11-24 02:08:27martin.pantersetrecipients: + martin.panter, orsenthil, ezio.melotti, eric.araujo, r.david.murray, nailor, oberstet
2013-11-24 02:08:27martin.pantersetmessageid: <1385258907.44.0.130734681862.issue13244@psf.upfronthosting.co.za>
2013-11-24 02:08:27martin.panterlinkissue13244 messages
2013-11-24 02:08:27martin.pantercreate