1. 74b4eda bpo-40077: Convert mmap.mmap static type to a heap type (GH-23108) by Erlend Egeberg Aasland · 3 years, 11 months ago
  2. 3ad52e3 bpo-1635741: Port mmap module to multiphase initialization (GH-19459) by Dong-hee Na · 4 years, 4 months ago
  3. 21fda91 bpo-40611: Adds MAP_POPULATE to the mmap module (GH-20061) by Ethan Steinberg · 4 years, 4 months ago
  4. f3a5b7a bpo-39481: remove generic classes from ipaddress/mmap (GH-20045) by Batuhan Taskaya · 4 years, 4 months ago
  5. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 5 months ago
  6. 7c4185d bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421) by Ethan Smith · 4 years, 5 months ago
  7. 06cd5b6 bpo-38465: Convert the type of exports counters to Py_ssize_t. (GH-16746) by Hai Shi · 5 years ago
  8. d8ca235 bpo-34953: Implement `mmap.mmap.__repr__` (GH-9891) by Taine Zhao · 5 years ago
  9. 56a4514 Fix a possbile refleak in setint() of mmapmodule.c (GH-16136) by Hai Shi · 5 years ago
  10. 762f93f bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) by Jeroen Demeyer · 5 years ago
  11. 08286d5 bpo-37316: mmap.mmap() passes the wrong variable to PySys_Audit() (GH-14152) by Zackery Spytz · 5 years ago
  12. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  13. 02db696 bpo-32941: Add madvise() for mmap objects (GH-6172) by Zackery Spytz · 5 years ago
  14. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 5 years ago
  15. 4fb1502 bpo-36648: fix mmap issue for VxWorks (GH-12394) by Lihua Zhao · 5 years ago
  16. 14514d9 bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) by Zackery Spytz · 5 years ago
  17. dc07894 bpo-36139: Fix mmap_object_dealloc(): hold the GIL to call PyMem_Free() (GH-12199) by Davide Rizzo · 6 years ago
  18. bb9593a closes bpo-36139: release GIL around munmap(). (GH-12073) by Davide Rizzo · 6 years ago
  19. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  20. 0e0bc4e Fix misleading mentions of tp_size in comments (GH-9093) by Peter Eisentraut · 6 years ago
  21. e7d4b2f bpo-2122: Make mmap.flush() behave same on all platforms (GH-8692) by Berker Peksag · 6 years ago
  22. e9e3976 bpo-33767: Fix improper use of SystemError by mmap.mmap objects (GH-7381) by Zackery Spytz · 6 years ago
  23. 9308dea Fix typos in mmap() error messages (GH-6173) by Zackery Spytz · 7 years ago
  24. d6e1404 bpo-33021: Fix GCC 7 warning (-Wmaybe-uninitialized) in mmapmodule.c (#6117) by Zackery Spytz · 7 years ago
  25. 4484f9d bpo-33021: Release the GIL during fstat() calls (GH-6019) by Nir Soffer · 7 years ago
  26. e2f92de Add the const qualifier to "char *" variables that refer to literal strings. (#4370) by Serhiy Storchaka · 7 years ago
  27. 5a8a84b Added :const:`mmap.ACCESS_DEFAULT` constant. (#4093) by Justus Schwabedal · 7 years ago
  28. b879fe8 Expand the PySlice_GetIndicesEx macro. (#1023) by Serhiy Storchaka · 7 years ago
  29. 762bf40 bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) by Serhiy Storchaka · 7 years ago
  30. 0042510 bpo-29730: replace some calls to PyNumber_Check and improve some error messages (#650) by Oren Milman · 8 years ago
  31. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  32. e4c222c merge 3.5 by Benjamin Peterson · 8 years ago
  33. 8f1cdc6 ensure read size is initialized by Benjamin Peterson · 8 years ago
  34. 43441c7 merge 3.5 by Benjamin Peterson · 8 years ago
  35. 3776836 do not leak buffer if mmap is not writable by Benjamin Peterson · 8 years ago
  36. 87845bc merge 3.5 by Benjamin Peterson · 8 years ago
  37. cd04db0 mmap: do all internal arithmetic with Py_ssize_t while being very careful about overflow by Benjamin Peterson · 8 years ago
  38. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
  39. af580df replace PY_LONG_LONG with long long by Benjamin Peterson · 8 years ago
  40. 6282e65 Issue #26335: Make mmap.write() return the number of bytes written like by Berker Peksag · 9 years ago
  41. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  42. 60e3f36 Merge 3.4 (#24217) by Benjamin Peterson · 9 years ago
  43. f6b5cad include fcntl.h on all *nix platforms (closes #24217) by Benjamin Peterson · 9 years ago
  44. 8fc8980 Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_invalid_parameter_handler. by Steve Dower · 9 years ago
  45. e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 9 years ago
  46. f329878 Issue #23753: Python doesn't support anymore platforms without stat() or by Victor Stinner · 9 years ago
  47. 8490f5a Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and by Serhiy Storchaka · 10 years ago
  48. e371b3d Fix compiler warning in mmapmodule.c (compare signed/unsigned integers) by Victor Stinner · 10 years ago
  49. a555cfc Issue #23694: Enhance _Py_open(), it now raises exceptions by Victor Stinner · 10 years ago
  50. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 10 years ago
  51. 76b4765 Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. by Serhiy Storchaka · 10 years ago
  52. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
  53. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  54. c53204b Issue #4885: Add weakref support to mmap objects. Patch by Valerie Lambert. by Antoine Pitrou · 11 years ago
  55. 6d40134 Merge by Richard Oudkerk · 12 years ago
  56. 0d09ba8 Issue #16743: Fix mmap overflow check on 32 bit Windows by Richard Oudkerk · 12 years ago
  57. 67bd81b MERGE: #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) by Jesus Cea · 12 years ago
  58. e8db356 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) by Jesus Cea · 12 years ago
  59. 4886d5b #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 12 years ago
  60. 1f2799b #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 12 years ago
  61. 1b3f3b0 Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 12 years ago
  62. 941bfcc Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 12 years ago
  63. 2318699 Whitespace. by Stefan Krah · 13 years ago
  64. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  65. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 13 years ago
  66. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  67. 1db37f3 Merge with 3.2 (Issue #12404). by Ross Lagerwall · 13 years ago
  68. dbfb9b8 Issue 12404: Remove C89 incompatible code from mmap module. by Ross Lagerwall · 13 years ago
  69. 4dd453c Issue #12021: Make mmap's read() method argument optional. Patch by Petri by Charles-François Natali · 13 years ago
  70. 5fac8af Checking if an unsigned long is < 0 is pointless. by Brett Cannon · 13 years ago
  71. 8108e96 (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X by Victor Stinner · 13 years ago
  72. a6cd0cf Issue #11277: mmap calls fcntl(fd, F_FULLFSYNC) on Mac OS X to get around a by Victor Stinner · 13 years ago
  73. 80d3610 Merge fix for issue #11391 by Antoine Pitrou · 14 years ago
  74. 16a0a0b Issue #11391: Writing to a mmap object created with by Antoine Pitrou · 14 years ago
  75. 9e719b6 Merged revisions 88460,88464,88466,88486,88511,88652 via svnmerge from by Antoine Pitrou · 14 years ago
  76. 97696cb Merged revisions 88486 via svnmerge from by Antoine Pitrou · 14 years ago
  77. 6107a4e Merged revisions 88131 via svnmerge from by Antoine Pitrou · 14 years ago
  78. 305bc9e Issue #10955: Fix a potential crash when trying to mmap() a file past its by Antoine Pitrou · 14 years ago
  79. 50dc65f Merged revisions 88036 via svnmerge from by Antoine Pitrou · 14 years ago
  80. d0ebc75 Fix mmap and test_mmap under Windows too (followup to r88022) by Antoine Pitrou · 14 years ago
  81. fb7bc3d Merged revisions 88022 via svnmerge from by Antoine Pitrou · 14 years ago
  82. 85f4615 Issue #10916: mmap should not segfault when a file is mapped using 0 as by Antoine Pitrou · 14 years ago
  83. 07c1bd7 Merged revisions 85678 via svnmerge from by R. David Murray · 14 years ago
  84. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  85. 09ea792 Merged revisions 86159 via svnmerge from by Hirokazu Yamamoto · 14 years ago
  86. 3cdd5cb Issue #5391: mmap.read_byte() should return unsigned value [0, 255] by Hirokazu Yamamoto · 14 years ago
  87. e194dd6 #678250: Make mmap flush a noop on ACCESS_READ and ACCESS_COPY. by R. David Murray · 14 years ago
  88. 52d4250 Issue #2643: msync() is not called anymore when deallocating an open mmap by Antoine Pitrou · 14 years ago
  89. 835b445 Merged revisions 84076 via svnmerge from by Antoine Pitrou · 14 years ago
  90. 22e4155 Fix other warnings under 64-bit Windows. by Antoine Pitrou · 14 years ago
  91. 686ee4f Merged revisions 83407 via svnmerge from by Brian Curtin · 14 years ago
  92. ea47eaa Fix #8105. Add validation to mmap.mmap so invalid file descriptors by Brian Curtin · 14 years ago
  93. 0bccc18 #8046: add context manager protocol support to mmap objects. Also add closed property. by Georg Brandl · 14 years ago
  94. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  95. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  96. 4e82f2d Merged revisions 73684 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  97. 7a9e1bd Merged revisions 73677,73681 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  98. 3d8827d Merged revisions 73425 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  99. ef3e4c2 Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,71299,71329,71397-71398,71486 via svnmerge from by Benjamin Peterson · 15 years ago
  100. e099b37 #5391 make mmap work exclusively with bytes by Benjamin Peterson · 15 years ago