summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351) (...Miss Islington (bot)2021-06-171-1/+2
* bpo-42972: Fully support GC for mmap heap types (GH-26373)Miss Islington (bot)2021-05-271-3/+10
* bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1...Segev Finer2021-04-231-6/+3
* bpo-42232: mmap module add Darwin specific madvise options. (GH-23076)David CARLIER2020-11-211-0/+8
* bpo-40077: Convert mmap.mmap static type to a heap type (GH-23108)Erlend Egeberg Aasland2020-11-031-68/+90
* bpo-1635741: Port mmap module to multiphase initialization (GH-19459)Dong-hee Na2020-06-061-74/+80
* bpo-40611: Adds MAP_POPULATE to the mmap module (GH-20061)Ethan Steinberg2020-05-261-0/+3
* bpo-39481: remove generic classes from ipaddress/mmap (GH-20045)Batuhan Taskaya2020-05-111-2/+0
* bpo-40268: Remove unused structmember.h includes (GH-19530)Victor Stinner2020-04-151-1/+1
* bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421)Ethan Smith2020-04-091-0/+2
* bpo-38465: Convert the type of exports counters to Py_ssize_t. (GH-16746)Hai Shi2019-10-211-1/+1
* bpo-34953: Implement `mmap.mmap.__repr__` (GH-9891)Taine Zhao2019-10-171-12/+57
* Fix a possbile refleak in setint() of mmapmodule.c (GH-16136)Hai Shi2019-09-161-1/+2
* bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer2019-07-081-1/+1
* bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)Zackery Spytz2019-06-211-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-301-2/+2
* bpo-32941: Add madvise() for mmap objects (GH-6172)Zackery Spytz2019-05-271-0/+118
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+10
* bpo-36648: fix mmap issue for VxWorks (GH-12394)Lihua Zhao2019-05-211-0/+7
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Zackery Spytz2019-05-171-2/+4
* bpo-36139: Fix mmap_object_dealloc(): hold the GIL to call PyMem_Free() (GH-1...Davide Rizzo2019-03-061-2/+4
* closes bpo-36139: release GIL around munmap(). (GH-12073)Davide Rizzo2019-03-061-14/+25
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Serhiy Storchaka2018-11-271-1/+1
* Fix misleading mentions of tp_size in comments (GH-9093)Peter Eisentraut2018-09-101-1/+1
* bpo-2122: Make mmap.flush() behave same on all platforms (GH-8692)Berker Peksag2018-08-221-4/+7
* bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381)Zackery Spytz2018-06-051-20/+2
* Fix typos in mmap() error messages (GH-6173)Zackery Spytz2018-03-211-2/+2
* bpo-33021: Fix GCC 7 warning (-Wmaybe-uninitialized) in mmapmodule.c (#6117)Zackery Spytz2018-03-141-1/+1
* bpo-33021: Release the GIL during fstat() calls (GH-6019)Nir Soffer2018-03-121-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