]> granicus.if.org Git - python/commit
CVS patch #477161: New "access" keyword for mmap, from Jay T Miller.
authorTim Peters <tim.peters@gmail.com>
Tue, 13 Nov 2001 23:11:19 +0000 (23:11 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 13 Nov 2001 23:11:19 +0000 (23:11 +0000)
commit5ebfd36afa9093099ab23e4d1256274ae7ee6978
treeed954f677f6427ad84bead3dc212b8746948f9a8
parentafeb2a4d8914848d8761472c93b3e9cbff57b275
CVS patch #477161:  New "access" keyword for mmap, from Jay T Miller.
This gives mmap() on Windows the ability to create read-only, write-
through and copy-on-write mmaps.  A new keyword argument is introduced
because the mmap() signatures diverged between Windows and Unix, so
while they (now) both support this functionality, there wasn't a way to
spell it in a common way without introducing a new spelling gimmick.
The old spellings are still accepted, so there isn't a backward-
compatibility issue here.
Doc/lib/libmmap.tex
Lib/test/output/test_mmap
Lib/test/test_mmap.py
Misc/NEWS
Modules/mmapmodule.c