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 calvin
Recipients calvin
Date 2011-03-11.13:47:41
SpamBayes Score 6.4251253e-06
Marked as misclassified No
Message-id <1299851262.1.0.3225912326.issue11467@psf.upfronthosting.co.za>
In-reply-to
Content
When using a javascript URL with only digits as paths, the urlsplit() functions behaves different in Python 2.7 than in 2.6:

$ python2.6 -c "import urlparse; print urlparse.urlsplit('javascript:123')"
SplitResult(scheme='javascript', netloc='', path='123', query='', fragment='')

$ python2.7 -c "import urlparse; print urlparse.urlsplit('javascript:123')"
SplitResult(scheme='', netloc='', path='javascript:123', query='', fragment='')

Python 3.2 has the same regression:
$ python3.2 -c "import urllib.parse; print(urllib.parse.urlsplit('javascript:123'))"
SplitResult(scheme='', netloc='', path='javascript:123', query='', fragment='')

I consider the Python 2.6 behaviour to be correct, ie. the current behaviour is buggy.
History
Date User Action Args
2011-03-11 13:47:42calvinsetrecipients: + calvin
2011-03-11 13:47:42calvinsetmessageid: <1299851262.1.0.3225912326.issue11467@psf.upfronthosting.co.za>
2011-03-11 13:47:41calvinlinkissue11467 messages
2011-03-11 13:47:41calvincreate