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
*
bpo-46848: Move _PyBytes_Find() to internal C API (GH-31642)
Victor Stinner
2022-03-02
1
-0/+1
*
bpo-46848: Use stringlib/fastsearch in mmap (GH-31625)
Dennis Sweeney
2022-03-02
1
-19/+13
*
bpo-46541: Remove usage of _Py_IDENTIFIER from mmap module (GH-31375)
Dong-hee Na
2022-02-16
1
-4/+1
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-0/+1
*
bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)
Victor Stinner
2022-01-11
1
-0/+5
*
bpo-46176: mmap module adding MAP_STACK constant. (GH-30252)
David CARLIER
2021-12-29
1
-0/+5
*
bpo-40915: Avoid compiler warnings by fixing mmapmodule conversion from LARGE...
neonene
2021-12-18
1
-1/+2
*
bpo-45621: Small changes to mmap (GH-29247)
Tim Golden
2021-10-29
1
-16/+5
*
bpo-40915: Fix mmap resize bugs on Windows (GH-29213)
Tim Golden
2021-10-26
1
-34/+95
*
bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)
Erlend Egeberg Aasland
2021-06-17
1
-1/+2
*
bpo-42972: Fully support GC for mmap heap types (GH-26373)
Erlend Egeberg Aasland
2021-05-27
1
-3/+10
*
bpo-30555: Fix WindowsConsoleIO fails in the presence of fd redirection (GH-1...
Segev Finer
2021-04-23
1
-6/+3
*
bpo-42232: mmap module add Darwin specific madvise options. (GH-23076)
David CARLIER
2020-11-21
1
-0/+8
*
bpo-40077: Convert mmap.mmap static type to a heap type (GH-23108)
Erlend Egeberg Aasland
2020-11-03
1
-68/+90
*
bpo-1635741: Port mmap module to multiphase initialization (GH-19459)
Dong-hee Na
2020-06-05
1
-74/+80
*
bpo-40611: Adds MAP_POPULATE to the mmap module (GH-20061)
Ethan Steinberg
2020-05-26
1
-0/+3
*
bpo-39481: remove generic classes from ipaddress/mmap (GH-20045)
Batuhan Taskaya
2020-05-12
1
-2/+0
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421)
Ethan Smith
2020-04-10
1
-0/+2
*
bpo-38465: Convert the type of exports counters to Py_ssize_t. (GH-16746)
Hai Shi
2019-10-21
1
-1/+1
*
bpo-34953: Implement `mmap.mmap.__repr__` (GH-9891)
Taine Zhao
2019-10-17
1
-12/+57
*
Fix a possbile refleak in setint() of mmapmodule.c (GH-16136)
Hai Shi
2019-09-16
1
-1/+2
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-1/+1
*
bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152)
Zackery Spytz
2019-06-21
1
-1/+1
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-2/+2
*
bpo-32941: Add madvise() for mmap objects (GH-6172)
Zackery Spytz
2019-05-27
1
-0/+118
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-0/+10
*
bpo-36648: fix mmap issue for VxWorks (GH-12394)
Lihua Zhao
2019-05-21
1
-0/+7
*
bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)
Zackery Spytz
2019-05-17
1
-2/+4
*
bpo-36139: Fix mmap_object_dealloc(): hold the GIL to call PyMem_Free() (GH-1...
Davide Rizzo
2019-03-06
1
-2/+4
*
closes bpo-36139: release GIL around munmap(). (GH-12073)
Davide Rizzo
2019-03-06
1
-14/+25
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-1/+1
*
Fix misleading mentions of tp_size in comments (GH-9093)
Peter Eisentraut
2018-09-10
1
-1/+1
*
bpo-2122: Make mmap.flush() behave same on all platforms (GH-8692)
Berker Peksag
2018-08-22
1
-4/+7
*
bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381)
Zackery Spytz
2018-06-05
1
-20/+2
*
Fix typos in mmap() error messages (GH-6173)
Zackery Spytz
2018-03-21
1
-2/+2
*
bpo-33021: Fix GCC 7 warning (-Wmaybe-uninitialized) in mmapmodule.c (#6117)
Zackery Spytz
2018-03-14
1
-1/+1
*
bpo-33021: Release the GIL during fstat() calls (GH-6019)
Nir Soffer
2018-03-11
1
-2/+9
*
Add the const qualifier to "char *" variables that refer to literal strings. ...
Serhiy Storchaka
2017-11-11
1
-1/+1
*
Added :const:`mmap.ACCESS_DEFAULT` constant. (#4093)
Justus Schwabedal
2017-11-07
1
-0/+1
*
Expand the PySlice_GetIndicesEx macro. (#1023)
Serhiy Storchaka
2017-04-08
1
-5/+4
*
bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716)
Serhiy Storchaka
2017-03-30
1
-24/+1
*
bpo-29730: replace some calls to PyNumber_Check and improve some error messag...
Oren Milman
2017-03-12
1
-3/+4
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-12/+6
*
merge 3.5
Benjamin Peterson
2016-10-06
1
-1/+1
|
\
|
*
ensure read size is initialized
Benjamin Peterson
2016-10-06
1
-1/+1
*
|
merge 3.5
Benjamin Peterson
2016-10-06
1
-1/+3
|
\
\
|
|
/
|
*
do not leak buffer if mmap is not writable
Benjamin Peterson
2016-10-06
1
-1/+3
*
|
merge 3.5
Benjamin Peterson
2016-10-06
1
-112/+79
|
\
\
|
|
/
|
*
mmap: do all internal arithmetic with Py_ssize_t while being very careful abo...
Benjamin Peterson
2016-10-06
1
-109/+78
[next]