1. 5e79321 bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154) by Serhiy Storchaka · 8 years ago
  2. e41390a bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046) by Serhiy Storchaka · 8 years ago
  3. bc4bdbd make 'where' Py_ssize_t by Benjamin Peterson · 8 years ago
  4. 1df2cbe mmap: do all internal arithmetic with Py_ssize_t while being very careful about overflow by Benjamin Peterson · 8 years ago
  5. c06a6d0 Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  6. d7a4f9e include fcntl.h on all *nix platforms (closes #24217) by Benjamin Peterson · 9 years ago
  7. cbee972 Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. by Serhiy Storchaka · 10 years ago
  8. 36b9d41 Issue #16743: Fix mmap overflow check on 32 bit Windows by Richard Oudkerk · 12 years ago
  9. 8e03b4c #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) by Jesus Cea · 12 years ago
  10. 20f0ea1 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 12 years ago
  11. 8b54d6d Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 12 years ago
  12. ffa8e2f Issue 12404: Remove C89 incompatible code from mmap module. by Ross Lagerwall · 13 years ago
  13. 112d48a (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS X by Victor Stinner · 13 years ago
  14. d6f3a3e Issue #11391: Writing to a mmap object created with by Antoine Pitrou · 14 years ago
  15. f4d2b3d Merged revisions 88486 via svnmerge from by Antoine Pitrou · 14 years ago
  16. 8a0eede Merged revisions 88131 via svnmerge from by Antoine Pitrou · 14 years ago
  17. 533aa25 Merged revisions 88036 via svnmerge from by Antoine Pitrou · 14 years ago
  18. 9989d85 Merged revisions 88022 via svnmerge from by Antoine Pitrou · 14 years ago
  19. 2a4b3fc Merged revisions 85678 via svnmerge from by R. David Murray · 14 years ago
  20. ba6c08e Merged revisions 83407 via svnmerge from by Brian Curtin · 14 years ago
  21. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  22. 8839fd7 Issue #6344: Fixed a crash of mmap.read() when passed a negative argument. by Hirokazu Yamamoto · 15 years ago
  23. 983a465 Issue #6271: mmap tried to close invalid file handle (-1) when annonymous. by Hirokazu Yamamoto · 15 years ago
  24. 2ecd3c3 bounds check arguments to mmap.move(). All of them. Really. by Jack Diederich · 16 years ago
  25. 1d7d532 Issue #5387: Fixed mmap.move crash by integer overflow. (take2) by Hirokazu Yamamoto · 16 years ago
  26. 40a6164 Apply patch for netbsd multiprocessing support by Jesse Noller · 16 years ago
  27. 9d2ee5d Issue #5387: Fixed mmap.move crash by integer overflow. by Hirokazu Yamamoto · 16 years ago
  28. 264fc12 Issue #5385: Fixed mmap crash after resize failure on windows. by Hirokazu Yamamoto · 16 years ago
  29. b0e10c7 Issue #1733986: Fixed mmap crash in accessing elements of second map object by Hirokazu Yamamoto · 16 years ago
  30. f2dc885 Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer by Hirokazu Yamamoto · 16 years ago
  31. 17a837e Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, by Hirokazu Yamamoto · 16 years ago
  32. f6bbd0e Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. by Hirokazu Yamamoto · 16 years ago
  33. 6626099 Fix strange character in the docstring. by Thomas Heller · 16 years ago
  34. e7d8be8 Security patches from Apple: prevent int overflow when allocating memory by Neal Norwitz · 16 years ago
  35. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  36. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  37. e139688 Issue 2112. mmap does not raises EnvironmentError no more, but by Facundo Batista · 17 years ago
  38. 7adfad8 Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ by Christian Heimes · 17 years ago
  39. e1027f9 Use int for the sign rather than a char. char can be signed or unsigned. by Neal Norwitz · 17 years ago
  40. 448654f Mostly reformat. Also set an error and return NULL if neither MS_WINDOWS by Neal Norwitz · 17 years ago
  41. 739a3c4 Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots, by Neal Norwitz · 17 years ago
  42. 501dbbf Use Py_TYPE() instead of ->ob_type by Christian Heimes · 17 years ago
  43. d02fc48 Fix for #1087741 patch. by Georg Brandl · 17 years ago
  44. 845c403 #1087741: make mmap.mmap the type of mmap objects, not a by Georg Brandl · 17 years ago
  45. ef92802 Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute access. by Georg Brandl · 17 years ago
  46. 5c60bfc Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). by Andrew M. Kuchling · 17 years ago
  47. 7c22ccc Check for fd of -1 to save fsync() and fstat() call by Andrew M. Kuchling · 17 years ago
  48. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  49. 9c4382f Fix some compiler warnings for signed comparisons on Unix and Windows. by Neal Norwitz · 17 years ago
  50. 8feafab Add phuang patch from Issue 708374 which adds offset parameter to mmap module. by Travis E. Oliphant · 17 years ago
  51. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 17 years ago
  52. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  53. 670f875 Alexander Belopolsky pointed out that pos is a size_t by Neal Norwitz · 18 years ago
  54. 076d1e0 Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev by Neal Norwitz · 18 years ago
  55. 5ed4997 Get rid of compiler warning by Neal Norwitz · 18 years ago
  56. e9ac0bb Check return result of PyModule_GetDict(). by Neal Norwitz · 18 years ago
  57. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  58. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  59. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  60. 2cfaa34 Correct some value converting strangenesses. by Georg Brandl · 18 years ago
  61. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  62. 02cbf4a More unconsting. by Martin v. Löwis · 19 years ago
  63. 5bb8a15 Fix typo. by Martin v. Löwis · 19 years ago
  64. 1518607 Fix size computation on Win64. by Martin v. Löwis · 19 years ago
  65. 2c98a7b Fix typo. by Thomas Wouters · 19 years ago
  66. cfe7e09 Remove size restrictions. by Martin v. Löwis · 19 years ago
  67. f288295 mmap_flush_method(): Squash compiler warning about by Tim Peters · 19 years ago
  68. 8f9cc29 Remove space between function name and left paren in function calls. by Tim Peters · 19 years ago
  69. 23721ee Removed pointless parens around `return` expressions; by Tim Peters · 19 years ago
  70. ec0a5f0 Trimmed trailing whitespace. by Tim Peters · 19 years ago
  71. e564e7f new_mmap_object(), Windows flavor. by Tim Peters · 19 years ago
  72. dde1765 More Py_ssize_t format characters. by Thomas Wouters · 19 years ago
  73. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
  74. 3eaf2b5 Update comment and make accurate. by Neal Norwitz · 19 years ago
  75. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  76. 0e6bc8c Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same by Neal Norwitz · 19 years ago
  77. d1cfc8a Whitespace normalization by Neal Norwitz · 19 years ago
  78. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  79. 3b4fff8 Fix SF bug #1402308, segfault when using mmap(-1, ...) by Neal Norwitz · 19 years ago
  80. 8856fb7 SF Patch #1365916, mmap fails on AMD64 by Neal Norwitz · 19 years ago
  81. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  82. 6eac200 Cleanup the previous checkin. by Neal Norwitz · 19 years ago
  83. 7b63179 Bug #1344508, Fix UNIX mmap leaking file descriptors. Will backport. by Neal Norwitz · 19 years ago
  84. 335ffe8 C89 compliance. by Armin Rigo · 19 years ago
  85. 38387b8 bug [ 728515 ] mmap's resize method resizes the file in win32 but not unix by Georg Brandl · 19 years ago
  86. 7fe60c0 Patches #749830, #1144555: allow UNIX mmap size to default to current file size. by Martin v. Löwis · 20 years ago
  87. 16581c8 Set data pointer to NULL after an error; this keeps the mmap_dealloc() function from trying to do msync(-1);munmap(-1). by Andrew M. Kuchling · 20 years ago
  88. ce59c04 Remove support for SunOS 4. by Skip Montanaro · 21 years ago
  89. a301667 [Patch #708374] Only apply the check for file size if the file is a regular file, not a character or block device. by Andrew M. Kuchling · 21 years ago
  90. c16f3bd Patch #708495: Port more stuff to OpenVMS. by Martin v. Löwis · 21 years ago
  91. 69c2b88 Fix two crashes on Windows: by Guido van Rossum · 22 years ago
  92. 4d933fe SF patch #682514, mmapmodule.c write fix for LP64 executables by Neal Norwitz · 22 years ago
  93. e604c02 SF #665913, Fix mmap module core dump with unix by Neal Norwitz · 22 years ago
  94. b567392 SF bug # 585792, Invalid mmap crashes Python interpreter by Neal Norwitz · 22 years ago
  95. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  96. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  97. c9ffa06 SF bug 515943: searching for data with \0 in mmap. by Tim Peters · 23 years ago
  98. 43b936d Patch #477750: Use METH_ constants in Modules. by Martin v. Löwis · 23 years ago
  99. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  100. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago