index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
mmapmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
[2.7] Fix misleading mentions of tp_size in comments (GH-9138)
Benjamin Peterson
2018-09-10
1
-1/+1
*
[2.7] bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-738...
Serhiy Storchaka
2018-06-05
1
-21/+3
*
Fix typos in mmap() error messages (GH-6173)
Miss Islington (bot)
2018-03-21
1
-2/+2
*
bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)
Serhiy Storchaka
2017-04-15
1
-2/+2
*
bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046)
Serhiy Storchaka
2017-04-08
1
-5/+4
*
make 'where' Py_ssize_t
Benjamin Peterson
2016-10-06
1
-4/+2
*
mmap: do all internal arithmetic with Py_ssize_t while being very careful abo...
Benjamin Peterson
2016-10-06
1
-106/+78
*
Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.
Serhiy Storchaka
2015-12-19
1
-1/+1
*
include fcntl.h on all *nix platforms (closes #24217)
Benjamin Peterson
2015-08-02
1
-2/+2
*
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
[next]