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 steve.dower
Recipients Kevin.Norris, eryksun, pitrou, steve.dower, tim.golden, zach.ware
Date 2014-09-06.15:04:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1410015864.52.0.10495501698.issue22299@psf.upfronthosting.co.za>
In-reply-to
Content
If anyone wanted to test that really long path, here's the incantation to create it:

>>> import os, pathlib
>>> os.mkdir("C:\\a")
>>> os.mkdir("C:\\a\\" + "a"*150)
>>> os.rename("C:\\a", "C:\\" + "a"*150)
>>> p = pathlib.Path("C:\\") / ("a"*150) / ("a"*150)
History
Date User Action Args
2014-09-06 15:04:24steve.dowersetrecipients: + steve.dower, pitrou, tim.golden, zach.ware, eryksun, Kevin.Norris
2014-09-06 15:04:24steve.dowersetmessageid: <1410015864.52.0.10495501698.issue22299@psf.upfronthosting.co.za>
2014-09-06 15:04:24steve.dowerlinkissue22299 messages
2014-09-06 15:04:24steve.dowercreate