[issue9271] Python throws `IOError: [Errno 27] File too large' on long file names

2012-08-17 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- stage: - committed/rejected status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9271 ___

[issue9271] Python throws `IOError: [Errno 27] File too large' on long file names

2010-07-16 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: The file name is only 106 characters long, it's not too long. [Errno 27] File too large probably refers to a big file larger than 2Gb. Does your OS support large files? -- nosy: +amaury.forgeotdarc

[issue9271] Python throws `IOError: [Errno 27] File too large' on long file names

2010-07-16 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: In any case, the error message comes from the operating system, not from Python, and I don't think we should introduce special cases here. -- nosy: +georg.brandl resolution: - wont fix status: open - pending

[issue9271] Python throws `IOError: [Errno 27] File too large' on long file names

2010-07-15 Thread Jason Gross
New submission from Jason Gross jasongro...@gmail.com: On attempting to open files with sufficiently long file names, python throws IOError: [Errno 27] File too large. This is misleading, and perhaps should be relabeled as 'File name too long.' I have only tested this on unix with Python