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 markshep
Recipients
Date 2006-04-28.16:46:18
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
If you've got a network share mounted as a local drive
then Windows has a limit of 67,076,095 (0x03ff7fff)
bytes for a read from an open file on that drive.

Running the python read() method on an open file larger
than this size throws an "IOError: [Errno 22] Invalid
argument" exception.

A fix would be for python to internally use multiple
reads so as to not exceed this limit.
History
Date User Action Args
2007-08-23 14:39:42adminlinkissue1478529 messages
2007-08-23 14:39:42admincreate