On 23Nov2010 13:59, I wrote: | On 22Nov2010 20:33, Neal Becker <[email protected]> wrote: | | mmap.mmap (f.fileno(), 0, prot=mmap.PROT_READ) | | error: [Errno 22] Invalid argument [...] | | I don't see anything in linux man-page about the underlying C mmap function | | not accepting 0-length files.
It's worth noting that any time you get an errno error/exception then it is almost certainly the underlying OS interface that has rejected your request, not the python library. Cheers, -- Cameron Simpson <[email protected]> DoD#743 http://www.cskk.ezoshosting.com/cs/ Don't have awk? Use this simple sh emulation: #!/bin/sh echo 'Awk bailing out!' >&2 exit 2 - Tom Horsley <[email protected]> -- http://mail.python.org/mailman/listinfo/python-list
