summaryrefslogtreecommitdiff
path: root/Modules/mmapmodule.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Miss Islington (bot)2019-05-171-2/+4
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Miss Islington (bot)2018-11-271-1/+1
* [3.7] Fix misleading mentions of tp_size in comments. (GH-9136)Benjamin Peterson2018-09-101-1/+1
* bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381)Miss Islington (bot)2018-06-051-20/+2
* Fix typos in mmap() error messages (GH-6173)Miss Islington (bot)2018-03-201-2/+2
* [3.7] bpo-33021: Release the GIL during fstat() calls (GH-6019) (GH-6159)Miss Islington (bot)2018-03-201-2/+9
* Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka2017-11-111-1/+1
* Added :const:`mmap.ACCESS_DEFAULT` constant. (#4093)Justus Schwabedal2017-11-071-0/+1
* Expand the PySlice_GetIndicesEx macro. (#1023)Serhiy Storchaka2017-04-081-5/+4
* bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)Serhiy Storchaka2017-03-301-24/+1
* bpo-29730: replace some calls to PyNumber_Check and improve some error messag...Oren Milman2017-03-131-3/+4
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-12/+6
* merge 3.5Benjamin Peterson2016-10-051-1/+1
|\
| * ensure read size is initializedBenjamin Peterson2016-10-051-1/+1
* | merge 3.5Benjamin Peterson2016-10-051-1/+3
|\ \ | |/
| * do not leak buffer if mmap is not writableBenjamin Peterson2016-10-051-1/+3
* | merge 3.5Benjamin Peterson2016-10-051-112/+79
|\ \ | |/
| * mmap: do all internal arithmetic with Py_ssize_t while being very careful abo...Benjamin Peterson2016-10-051-109/+78
* | Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower2016-09-081-4/+0
* | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-6/+6
* | Issue #26335: Make mmap.write() return the number of bytes written likeBerker Peksag2016-03-021-2/+3
|/
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* Merge 3.4 (#24217)Benjamin Peterson2015-08-021-2/+2
|\
| * include fcntl.h on all *nix platforms (closes #24217)Benjamin Peterson2015-08-021-2/+2
* | Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_i...Steve Dower2015-04-121-1/+3
* | Issue #23752: _Py_fstat() is now responsible to raise the Python exceptionVictor Stinner2015-03-301-13/+12
* | Issue #23753: Python doesn't support anymore platforms without stat() orVictor Stinner2015-03-241-4/+0
* | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, andSerhiy Storchaka2015-03-201-11/+17
* | Fix compiler warning in mmapmodule.c (compare signed/unsigned integers)Victor Stinner2015-03-181-1/+1
* | Issue #23694: Enhance _Py_open(), it now raises exceptionsVictor Stinner2015-03-181-1/+0
* | Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...Steve Dower2015-02-211-4/+4
|/
* Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows.Serhiy Storchaka2014-08-191-0/+16
* Issue #16136: Remove VMS support and VMS-related codeChristian Heimes2013-12-211-6/+0
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-281-4/+4
* Issue #4885: Add weakref support to mmap objects. Patch by Valerie Lambert.Antoine Pitrou2013-08-051-1/+7
* MergeRichard Oudkerk2013-02-131-11/+11
|\
| * Issue #16743: Fix mmap overflow check on 32 bit WindowsRichard Oudkerk2013-02-131-11/+11
* | MERGE: #15676: mmap: add empty file check prior to offset check <- Previous p...Jesus Cea2012-09-101-0/+1
|\ \ | |/
| * #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
|\ \ | |/
| * #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
|\ \ | |/
| * Closes #15676: mmap: add empty file check prior to offset checkJesus Cea2012-09-101-0/+5
* | Whitespace.Stefan Krah2012-03-061-14/+14
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* | PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy.Antoine Pitrou2011-10-121-16/+10
* | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-1/+3
* | Merge with 3.2 (Issue #12404).Ross Lagerwall2011-06-251-1/+2
|\ \ | |/
| * Issue 12404: Remove C89 incompatible code from mmap module.Ross Lagerwall2011-06-251-1/+2
* | Issue #12021: Make mmap's read() method argument optional. Patch by PetriCharles-François Natali2011-06-081-2/+24