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 orsenthil
Recipients
Date 2007-05-23.21:27:27
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Hi Thomas,
Verified the Bug with Python 2.5 and verified the fix as well. Works fine.

>>> urlparse(urlunparse(urlparse('file:////home/ors')))
('file', '', '//home/ors', '', '', '')
>>> urlparse(urlunparse(urlparse('file://///home/ors')))
('file', '', '///home/ors', '', '', '')
>>> urlparse(urlunparse(urlparse('file://////home/ors')))
('file', '', '////home/ors', '', '', '')
>>> urlparse(urlunparse(urlparse(urlunparse(urlparse('file://////home/ors')))))
('file', '', '////home/ors', '', '', '')
>>>

History
Date User Action Args
2007-08-23 14:54:02adminlinkissue1722348 messages
2007-08-23 14:54:02admincreate