aboutsummaryrefslogtreecommitdiff
path: root/Modules/mmapmodule.c
AgeCommit message (Expand)Author
2018-03-21Fix typos in mmap() error messages (GH-6173)Zackery Spytz
2018-03-14bpo-33021: Fix GCC 7 warning (-Wmaybe-uninitialized) in mmapmodule.c (#6117)Zackery Spytz
2018-03-12bpo-33021: Release the GIL during fstat() calls (GH-6019)Nir Soffer
2017-11-11Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka
2017-11-07Added :const:`mmap.ACCESS_DEFAULT` constant. (#4093)Justus Schwabedal
2017-04-08Expand the PySlice_GetIndicesEx macro. (#1023)Serhiy Storchaka
2017-03-30bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)Serhiy Storchaka
2017-03-13bpo-29730: replace some calls to PyNumber_Check and improve some error messag...Oren Milman
2017-01-23Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka
2016-10-05merge 3.5Benjamin Peterson
2016-10-05ensure read size is initializedBenjamin Peterson
2016-10-05merge 3.5Benjamin Peterson
2016-10-05do not leak buffer if mmap is not writableBenjamin Peterson
2016-10-05merge 3.5Benjamin Peterson
2016-10-05mmap: do all internal arithmetic with Py_ssize_t while being very careful abo...Benjamin Peterson
2016-09-08Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower
2016-09-06replace PY_LONG_LONG with long longBenjamin Peterson
2016-03-02Issue #26335: Make mmap.write() return the number of bytes written likeBerker Peksag
2015-12-19Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka
2015-08-02Merge 3.4 (#24217)Benjamin Peterson
2015-08-02include fcntl.h on all *nix platforms (closes #24217)Benjamin Peterson
2015-04-12Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_i...Steve Dower
2015-03-30Issue #23752: _Py_fstat() is now responsible to raise the Python exceptionVictor Stinner
2015-03-24Issue #23753: Python doesn't support anymore platforms without stat() orVictor Stinner
2015-03-20Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, andSerhiy Storchaka
2015-03-18Fix compiler warning in mmapmodule.c (compare signed/unsigned integers)Victor Stinner
2015-03-18Issue #23694: Enhance _Py_open(), it now raises exceptionsVictor Stinner
2015-02-21Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...Steve Dower
2014-08-19Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.Serhiy Storchaka
2013-12-21Issue #16136: Remove VMS support and VMS-related codeChristian Heimes
2013-08-28Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner
2013-08-05Issue #4885: Add weakref support to mmap objects. Patch by Valerie Lambert.Antoine Pitrou
2013-02-13MergeRichard Oudkerk
2013-02-13Issue #16743: Fix mmap overflow check on 32 bit WindowsRichard Oudkerk
2012-09-10MERGE: #15676: mmap: add empty file check prior to offset check <- Previous p...Jesus Cea
2012-09-10#15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea
2012-09-10#15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea
2012-09-10#15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea
2012-09-10Closes #15676: mmap: add empty file check prior to offset checkJesus Cea
2012-09-10Closes #15676: mmap: add empty file check prior to offset checkJesus Cea
2012-03-06Whitespace.Stefan Krah
2011-10-14Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis
2011-10-12PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou
2011-10-09Add API for static strings, primarily good for identifiers.Martin v. Löwis
2011-06-25Merge with 3.2 (Issue #12404).Ross Lagerwall
2011-06-25Issue 12404: Remove C89 incompatible code from mmap module.Ross Lagerwall
2011-06-08Issue #12021: Make mmap's read() method argument optional. Patch by PetriCharles-François Natali
2011-06-06Checking if an unsigned long is < 0 is pointless.Brett Cannon
2011-05-02(Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS XVictor Stinner
2011-05-02Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around aVictor Stinner