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