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 zenzen
Recipients
Date 2006-01-17.03:47:29
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
>>> from urlparse import urlparse
>>> urlparse('sftp://example.com//absolute/path')
('sftp', '', '//example.com//absolute/path', '', '', '')
>>> urlparse('sftp://example.com/relative/path')
('sftp', '', '//example.com/relative/path', '', '', '')

netloc should be populated in both cases
History
Date User Action Args
2007-08-23 14:37:21adminlinkissue1407902 messages
2007-08-23 14:37:21admincreate