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 Fred Rolland
Recipients Fred Rolland
Date 2016-02-10.14:58:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1455116285.45.0.915370101527.issue26329@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

os.path.normpath("//") returns '//'

I would expect to be '/'

>>> os.path.normpath("//")
'//'
>>> os.path.normpath("///")
'/'
>>> os.path.normpath("////")
'/'
History
Date User Action Args
2016-02-10 14:58:05Fred Rollandsetrecipients: + Fred Rolland
2016-02-10 14:58:05Fred Rollandsetmessageid: <1455116285.45.0.915370101527.issue26329@psf.upfronthosting.co.za>
2016-02-10 14:58:05Fred Rollandlinkissue26329 messages
2016-02-10 14:58:05Fred Rollandcreate