1. 38297d7 skip test if resizing is not supported by Benjamin Peterson · 9 years ago
  2. 1df2cbe mmap: do all internal arithmetic with Py_ssize_t while being very careful about overflow by Benjamin Peterson · 9 years ago
  3. 2426da8 Fixed typo. by Serhiy Storchaka · 11 years ago
  4. cbee972 Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. by Serhiy Storchaka · 11 years ago
  5. 32e23e7 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 12 years ago
  6. 71b2ded Silence deprecation warning in test_mmap for ValueError.message. by Terry Jan Reedy · 12 years ago
  7. 36b9d41 Issue #16743: Fix mmap overflow check on 32 bit Windows by Richard Oudkerk · 12 years ago
  8. 20f0ea1 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 13 years ago
  9. 8b54d6d Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 13 years ago
  10. 5ae6c42 Fix potential resource leak in test_mmap. by Nadeem Vawda · 14 years ago
  11. d0a8f16 Issue #11277: Fix tests - crash will not trigger if the file is closed and reopened. by Nadeem Vawda · 14 years ago
  12. 0d837ef Issue #11277: Add tests for mmap crash when using large sparse files on OS X. by Nadeem Vawda · 14 years ago
  13. c2077b0 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 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 · 15 years ago
  17. 533aa25 Merged revisions 88036 via svnmerge from by Antoine Pitrou · 15 years ago
  18. 9989d85 Merged revisions 88022 via svnmerge from by Antoine Pitrou · 15 years ago
  19. 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 15 years ago
  20. ba6c08e Merged revisions 83407 via svnmerge from by Brian Curtin · 15 years ago
  21. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  22. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  23. 772033f No behavior change. by Hirokazu Yamamoto · 16 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. 9d2ee5d Issue #5387: Fixed mmap.move crash by integer overflow. by Hirokazu Yamamoto · 16 years ago
  27. 59beec3 Add import_function method to test.test_support, and modify a number of by R. David Murray · 16 years ago
  28. 0903306 mmap.resize for anonymous map is not working yet, so changed to real file mapping... by Hirokazu Yamamoto · 16 years ago
  29. 264fc12 Issue #5385: Fixed mmap crash after resize failure on windows. by Hirokazu Yamamoto · 16 years ago
  30. b0e10c7 Issue #1733986: Fixed mmap crash in accessing elements of second map object by Hirokazu Yamamoto · 16 years ago
  31. f2dc885 Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer by Hirokazu Yamamoto · 16 years ago
  32. 17a837e Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, by Hirokazu Yamamoto · 16 years ago
  33. f6bbd0e Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. by Hirokazu Yamamoto · 16 years ago
  34. d48a2f7 Be sure to close the file. 2 places were deleting the file, so it was probably by Neal Norwitz · 17 years ago
  35. e139688 Issue 2112. mmap does not raises EnvironmentError no more, but by Facundo Batista · 17 years ago
  36. 64d6843 mmap.PROT_READ does not exists on win32; Skip this test created by r60830. by Amaury Forgeot d'Arc · 17 years ago
  37. 7adfad8 Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ by Christian Heimes · 17 years ago
  38. d02fc48 Fix for #1087741 patch. by Georg Brandl · 18 years ago
  39. 5c60bfc Patch #976880: add mmap .rfind() method, and 'end' paramter to .find(). by Andrew M. Kuchling · 18 years ago
  40. 8feafab Add phuang patch from Issue 708374 which adds offset parameter to mmap module. by Travis E. Oliphant · 18 years ago
  41. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 18 years ago
  42. abd8a33 Whitespace normalization. by Tim Peters · 19 years ago
  43. 3163179 Convert test_mmap to unittest. by Georg Brandl · 19 years ago
  44. 0e6bc8c Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same by Neal Norwitz · 20 years ago
  45. 3b4fff8 Fix SF bug #1402308, segfault when using mmap(-1, ...) by Neal Norwitz · 20 years ago
  46. 8856fb7 SF Patch #1365916, mmap fails on AMD64 by Neal Norwitz · 20 years ago
  47. 9e34c04 Whitespace normalization (via reindent.py). by Tim Peters · 20 years ago
  48. 38387b8 bug [ 728515 ] mmap's resize method resizes the file in win32 but not unix by Georg Brandl · 20 years ago
  49. eba28be Whitespace normalization. by Tim Peters · 20 years ago
  50. 7fe60c0 Patches #749830, #1144555: allow UNIX mmap size to default to current file size. by Martin v. Löwis · 20 years ago
  51. ddc82ea A new test here was failing on Windows, because the test before it never by Tim Peters · 23 years ago
  52. e604c02 SF #665913, Fix mmap module core dump with unix by Neal Norwitz · 23 years ago
  53. ccd9e75 test_both(): I believe this was a typo: m is only defined if no by Barry Warsaw · 23 years ago
  54. 1b5112a I left some debugging junk in here; removed it. Also replaced a few by Tim Peters · 23 years ago
  55. 4f4f4d7 A few days ago a test was added here to ensure that creating an mmap by Tim Peters · 23 years ago
  56. 522076d Try to get test to pass on Windows by Neal Norwitz · 23 years ago
  57. b567392 SF bug # 585792, Invalid mmap crashes Python interpreter by Neal Norwitz · 23 years ago
  58. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
  59. e12cda9 test_mmap started breaking on Windows, only when run after test_bsddb. by Tim Peters · 23 years ago
  60. 5379dea SF bug 544733: Cygwin test_mmap fix for Python 2.2.1 by Tim Peters · 23 years ago
  61. c9ffa06 SF bug 515943: searching for data with \0 in mmap. by Tim Peters · 23 years ago
  62. 00cafa0 Removed print that executes only on Unix boxes; that made it impossible by Tim Peters · 24 years ago
  63. 5ebfd36 CVS patch #477161: New "access" keyword for mmap, from Jay T Miller. by Tim Peters · 24 years ago
  64. 6278799 unlink() would normally be found in the "os" module, so use it from there. by Fred Drake · 24 years ago
  65. fd69208 Change test_mmap.py to use test_support.TESTFN instead of hardcoded "foo", by Tim Peters · 24 years ago
  66. fc170b1 String method conversion. by Eric S. Raymond · 25 years ago
  67. 3661908 This patch removes all uses of "assert" in the regression test suite by Marc-André Lemburg · 25 years ago
  68. 2caf8df SF bug 128713: type(mmap_object) blew up on Linux. by Tim Peters · 25 years ago
  69. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 25 years ago
  70. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 25 years ago
  71. 5069921 test_mmap wrote null bytes into its expected-output file; this caused me to by Tim Peters · 25 years ago
  72. a701597 Fix inconsistent use of tab/space in indentation. by Thomas Wouters · 25 years ago
  73. af4cfae Test that after resizing the mmap'd file, we can't seek beyond the new size. by Mark Hammond · 25 years ago
  74. 7a11671 fixed inconsistent use of tab and spaces by Peter Schneider-Kamp · 25 years ago
  75. d3cf692 Add test of resize() method of mmap objects by Andrew M. Kuchling · 25 years ago
  76. cf70ea6 Additional tests for seek() method, written by Trent Mick by Andrew M. Kuchling · 25 years ago
  77. 605843f Mark Hammond: This patch fixes the mmap module on Windows 9x. by Fred Drake · 25 years ago
  78. 706dbd0 Mark Hammond: Ooops - even though Win32 handles the same args, there by Guido van Rossum · 25 years ago
  79. 767e775 Improved test, by Mark Hammond, for Win32. by Guido van Rossum · 25 years ago
  80. e81b9cf Added simple test case for mmap on Unix; someone needs to write a by Andrew M. Kuchling · 25 years ago