[issue542314] long file name support broken in windows

2007-09-14 Thread Mark Hammond
Mark Hammond added the comment: I can confirm the code in question was removed and that long filenames are possible in 2.5. Eg: import os p = "?\\" + os.getcwdu() for i in range(10): p = os.path.join(p, 'x' * 100) os.mkdir(p) os.stat(p) print len(p) I don't think Python should

[issue542314] long file name support broken in windows

2007-09-13 Thread Brett Cannon
Brett Cannon added the comment: Can someone verify that the length issue has been fixed since Ptyhon 2.5? -- nosy: +brett.cannon Tracker <[EMAIL PROTECTED]> ___