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 carpaski
Recipients
Date 2002-11-11.16:00:59
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
normpath does not remove leading double slashes. (Linux)
Python 2.2.1 (#1, Oct 30 2002, 19:46:40)

>>> import os.path
>>> os.path.normpath("//usr/bin")
'//usr/bin'
>>> os.path.normpath("///usr/bin")
'/usr/bin'
>>> os.path.normpath("//./usr/bin")
'//usr/bin'
History
Date User Action Args
2007-08-23 14:08:05adminlinkissue636648 messages
2007-08-23 14:08:05admincreate