summaryrefslogtreecommitdiff
path: root/Modules/mmapmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] Fix misleading mentions of tp_size in comments (GH-9138)Benjamin Peterson2018-09-101-1/+1
* [2.7] bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-738...Serhiy Storchaka2018-06-051-21/+3
* Fix typos in mmap() error messages (GH-6173)Miss Islington (bot)2018-03-201-2/+2
* bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)Serhiy Storchaka2017-04-151-2/+2
* bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046)Serhiy Storchaka2017-04-081-5/+4
* make 'where' Py_ssize_tBenjamin Peterson2016-10-051-4/+2
* mmap: do all internal arithmetic with Py_ssize_t while being very careful abo...Benjamin Peterson2016-10-051-106/+78
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* include fcntl.h on all *nix platforms (closes #24217)Benjamin Peterson2015-08-021-2/+2
* Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.Serhiy Storchaka2014-08-191-0/+16
* Issue #16743: Fix mmap overflow check on 32 bit WindowsRichard Oudkerk2013-02-131-11/+11
* #15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea2012-09-101-0/+1
* #15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea2012-09-101-0/+5
* Closes #15676: mmap: add empty file check prior to offset checkJesus Cea2012-09-101-0/+5
* Issue 12404: Remove C89 incompatible code from mmap module.Ross Lagerwall2011-06-251-1/+2
* (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS XVictor Stinner2011-05-031-0/+9
* Issue #11391: Writing to a mmap object created withAntoine Pitrou2011-03-061-5/+10
* Merged revisions 88486 via svnmerge fromAntoine Pitrou2011-02-211-48/+59
* Merged revisions 88131 via svnmerge fromAntoine Pitrou2011-01-201-0/+11
* Merged revisions 88036 via svnmerge fromAntoine Pitrou2011-01-151-0/+1
* Merged revisions 88022 via svnmerge fromAntoine Pitrou2011-01-151-1/+1
* Merged revisions 85678 via svnmerge fromR. David Murray2010-12-111-1/+6
* Merged revisions 83407 via svnmerge fromBrian Curtin2010-08-011-0/+5
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1056/+1056
* Issue #6344: Fixed a crash of mmap.read() when passed a negative argument.Hirokazu Yamamoto2009-06-291-3/+13
* Issue #6271: mmap tried to close invalid file handle (-1) when annonymous.Hirokazu Yamamoto2009-06-141-1/+2
* bounds check arguments to mmap.move(). All of them. Really.Jack Diederich2009-04-011-9/+9
* Issue #5387: Fixed mmap.move crash by integer overflow. (take2)Hirokazu Yamamoto2009-03-311-1/+1
* Apply patch for netbsd multiprocessing supportJesse Noller2009-03-311-1/+5
* Issue #5387: Fixed mmap.move crash by integer overflow.Hirokazu Yamamoto2009-03-311-4/+2
* Issue #5385: Fixed mmap crash after resize failure on windows.Hirokazu Yamamoto2009-03-051-6/+13
* Issue #1733986: Fixed mmap crash in accessing elements of second map objectHirokazu Yamamoto2009-02-281-1/+1
* Issue #5386: mmap.write_byte didn't check map size, so it could cause bufferHirokazu Yamamoto2009-02-281-4/+11
* Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0,Hirokazu Yamamoto2009-02-171-2/+2
* Issue #5292: Fixed mmap crash on its boundary access m[len(m)].Hirokazu Yamamoto2009-02-171-2/+2
* Fix strange character in the docstring.Thomas Heller2008-08-191-1/+1
* Security patches from Apple: prevent int overflow when allocating memoryNeal Norwitz2008-07-311-1/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-18/+18
* Renamed PyString to PyBytesChristian Heimes2008-05-261-18/+18
* Issue 2112. mmap does not raises EnvironmentError no more, butFacundo Batista2008-02-171-1/+4
* Bug #2111: mmap segfaults when trying to write a block opened with PROT_READChristian Heimes2008-02-151-0/+4
* Use int for the sign rather than a char. char can be signed or unsigned.Neal Norwitz2008-01-271-1/+1
* Mostly reformat. Also set an error and return NULL if neither MS_WINDOWSNeal Norwitz2008-01-271-15/+13
* Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots,Neal Norwitz2008-01-261-7/+7
* Use Py_TYPE() instead of ->ob_typeChristian Heimes2008-01-231-1/+1
* Fix for #1087741 patch.Georg Brandl2008-01-221-1/+1
* #1087741: make mmap.mmap the type of mmap objects, not aGeorg Brandl2008-01-211-20/+27
* Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute a...Georg Brandl2008-01-201-10/+36
* Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().Andrew M. Kuchling2008-01-191-5/+34
* Check for fd of -1 to save fsync() and fstat() callAndrew M. Kuchling2008-01-101-2/+4