| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. | Serhiy Storchaka | 2014-08-19 | 1 | -0/+16 |
|
|
* | Issue #16743: Fix mmap overflow check on 32 bit Windows | Richard Oudkerk | 2013-02-13 | 1 | -11/+11 |
|
|
* | #15676: mmap: add empty file check prior to offset check <- Previous patch wa... | Jesus Cea | 2012-09-10 | 1 | -0/+1 |
|
|
* | #15676: mmap: add empty file check prior to offset check <- Previous patch wa... | Jesus Cea | 2012-09-10 | 1 | -0/+5 |
|
|
* | Closes #15676: mmap: add empty file check prior to offset check | Jesus Cea | 2012-09-09 | 1 | -0/+5 |
|
|
* | Issue 12404: Remove C89 incompatible code from mmap module. | Ross Lagerwall | 2011-06-25 | 1 | -1/+2 |
|
|
* | (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X | Victor Stinner | 2011-05-03 | 1 | -0/+9 |
|
|
* | Issue #11391: Writing to a mmap object created with | Antoine Pitrou | 2011-03-06 | 1 | -5/+10 |
|
|
* | Merged revisions 88486 via svnmerge from | Antoine Pitrou | 2011-02-21 | 1 | -48/+59 |
|
|
* | Merged revisions 88131 via svnmerge from | Antoine Pitrou | 2011-01-20 | 1 | -0/+11 |
|
|
* | Merged revisions 88036 via svnmerge from | Antoine Pitrou | 2011-01-15 | 1 | -0/+1 |
|
|
* | Merged revisions 88022 via svnmerge from | Antoine Pitrou | 2011-01-15 | 1 | -1/+1 |
|
|
* | Merged revisions 85678 via svnmerge from | R. David Murray | 2010-12-11 | 1 | -1/+6 |
|
|
* | Merged revisions 83407 via svnmerge from | Brian Curtin | 2010-08-01 | 1 | -0/+5 |
|
|
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -1056/+1056 |
|
|
* | Issue #6344: Fixed a crash of mmap.read() when passed a negative argument. | Hirokazu Yamamoto | 2009-06-29 | 1 | -3/+13 |
|
|
* | Issue #6271: mmap tried to close invalid file handle (-1) when annonymous. | Hirokazu Yamamoto | 2009-06-14 | 1 | -1/+2 |
|
|
* | bounds check arguments to mmap.move(). All of them. Really. | Jack Diederich | 2009-04-01 | 1 | -9/+9 |
|
|
* | Issue #5387: Fixed mmap.move crash by integer overflow. (take2) | Hirokazu Yamamoto | 2009-03-31 | 1 | -1/+1 |
|
|
* | Apply patch for netbsd multiprocessing support | Jesse Noller | 2009-03-31 | 1 | -1/+5 |
|
|
* | Issue #5387: Fixed mmap.move crash by integer overflow. | Hirokazu Yamamoto | 2009-03-31 | 1 | -4/+2 |
|
|
* | Issue #5385: Fixed mmap crash after resize failure on windows. | Hirokazu Yamamoto | 2009-03-05 | 1 | -6/+13 |
|
|
* | Issue #1733986: Fixed mmap crash in accessing elements of second map object | Hirokazu Yamamoto | 2009-02-28 | 1 | -1/+1 |
|
|
* | Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer | Hirokazu Yamamoto | 2009-02-28 | 1 | -4/+11 |
|
|
* | Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, | Hirokazu Yamamoto | 2009-02-17 | 1 | -2/+2 |
|
|
* | Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. | Hirokazu Yamamoto | 2009-02-17 | 1 | -2/+2 |
|
|
* | Fix strange character in the docstring. | Thomas Heller | 2008-08-19 | 1 | -1/+1 |
|
|
* | Security patches from Apple: prevent int overflow when allocating memory | Neal Norwitz | 2008-07-31 | 1 | -1/+1 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -18/+18 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -18/+18 |
|
|
* | Issue 2112. mmap does not raises EnvironmentError no more, but | Facundo Batista | 2008-02-17 | 1 | -1/+4 |
|
|
* | Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ | Christian Heimes | 2008-02-15 | 1 | -0/+4 |
|
|
* | Use int for the sign rather than a char. char can be signed or unsigned. | Neal Norwitz | 2008-01-27 | 1 | -1/+1 |
|
|
* | Mostly reformat. Also set an error and return NULL if neither MS_WINDOWS | Neal Norwitz | 2008-01-27 | 1 | -15/+13 |
|
|
* | Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots, | Neal Norwitz | 2008-01-26 | 1 | -7/+7 |
|
|
* | Use Py_TYPE() instead of ->ob_type | Christian Heimes | 2008-01-23 | 1 | -1/+1 |
|
|
* | Fix for #1087741 patch. | Georg Brandl | 2008-01-22 | 1 | -1/+1 |
|
|
* | #1087741: make mmap.mmap the type of mmap objects, not a | Georg Brandl | 2008-01-21 | 1 | -20/+27 |
|
|
* | Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute a... | Georg Brandl | 2008-01-20 | 1 | -10/+36 |
|
|
* | Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). | Andrew M. Kuchling | 2008-01-19 | 1 | -5/+34 |
|
|
* | Check for fd of -1 to save fsync() and fstat() call | Andrew M. Kuchling | 2008-01-10 | 1 | -2/+4 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -1/+1 |
|
|
* | Fix some compiler warnings for signed comparisons on Unix and Windows. | Neal Norwitz | 2007-10-31 | 1 | -2/+2 |
|
|
* | Add phuang patch from Issue 708374 which adds offset parameter to mmap module. | Travis E. Oliphant | 2007-10-23 | 1 | -34/+75 |
|
|
* | Improve extended slicing support in builtin types and classes. Specifically: | Thomas Wouters | 2007-08-28 | 1 | -1/+151 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -3/+2 |
|
|
* | Alexander Belopolsky pointed out that pos is a size_t | Neal Norwitz | 2006-08-22 | 1 | -1/+1 |
|
|
* | Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev | Neal Norwitz | 2006-08-21 | 1 | -1/+1 |
|
|
* | Get rid of compiler warning | Neal Norwitz | 2006-08-13 | 1 | -2/+2 |
|
|
* | Check return result of PyModule_GetDict(). | Neal Norwitz | 2006-08-13 | 1 | -22/+24 |
|
|