1. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  2. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  3. e5aeaad Return bytes, not string from read(). Makes test_mmap.py pass. by Guido van Rossum · 17 years ago
  4. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  5. b358a2c SF patch# 1752647 by Joe Gregorio. by Guido van Rossum · 17 years ago
  6. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  7. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  8. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  9. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  10. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  11. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  12. 02cbf4a More unconsting. by Martin v. Löwis · 18 years ago
  13. 5bb8a15 Fix typo. by Martin v. Löwis · 18 years ago
  14. 1518607 Fix size computation on Win64. by Martin v. Löwis · 18 years ago
  15. 2c98a7b Fix typo. by Thomas Wouters · 18 years ago
  16. cfe7e09 Remove size restrictions. by Martin v. Löwis · 18 years ago
  17. f288295 mmap_flush_method(): Squash compiler warning about by Tim Peters · 18 years ago
  18. 8f9cc29 Remove space between function name and left paren in function calls. by Tim Peters · 18 years ago
  19. 23721ee Removed pointless parens around `return` expressions; by Tim Peters · 18 years ago
  20. ec0a5f0 Trimmed trailing whitespace. by Tim Peters · 18 years ago
  21. e564e7f new_mmap_object(), Windows flavor. by Tim Peters · 18 years ago
  22. dde1765 More Py_ssize_t format characters. by Thomas Wouters · 18 years ago
  23. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 18 years ago
  24. 3eaf2b5 Update comment and make accurate. by Neal Norwitz · 18 years ago
  25. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  26. 0e6bc8c Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same by Neal Norwitz · 18 years ago
  27. d1cfc8a Whitespace normalization by Neal Norwitz · 18 years ago
  28. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 18 years ago
  29. 3b4fff8 Fix SF bug #1402308, segfault when using mmap(-1, ...) by Neal Norwitz · 18 years ago
  30. 8856fb7 SF Patch #1365916, mmap fails on AMD64 by Neal Norwitz · 19 years ago
  31. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  32. 6eac200 Cleanup the previous checkin. by Neal Norwitz · 19 years ago
  33. 7b63179 Bug #1344508, Fix UNIX mmap leaking file descriptors. Will backport. by Neal Norwitz · 19 years ago
  34. 335ffe8 C89 compliance. by Armin Rigo · 19 years ago
  35. 38387b8 bug [ 728515 ] mmap's resize method resizes the file in win32 but not unix by Georg Brandl · 19 years ago
  36. 7fe60c0 Patches #749830, #1144555: allow UNIX mmap size to default to current file size. by Martin v. Löwis · 19 years ago
  37. 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
  38. ce59c04 Remove support for SunOS 4. by Skip Montanaro · 20 years ago
  39. 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
  40. c16f3bd Patch #708495: Port more stuff to OpenVMS. by Martin v. Löwis · 21 years ago
  41. 69c2b88 Fix two crashes on Windows: by Guido van Rossum · 21 years ago
  42. 4d933fe SF patch #682514, mmapmodule.c write fix for LP64 executables by Neal Norwitz · 21 years ago
  43. e604c02 SF #665913, Fix mmap module core dump with unix by Neal Norwitz · 21 years ago
  44. b567392 SF bug # 585792, Invalid mmap crashes Python interpreter by Neal Norwitz · 22 years ago
  45. 62b1ab1 Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link by Mark Hammond · 22 years ago
  46. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  47. c9ffa06 SF bug 515943: searching for data with \0 in mmap. by Tim Peters · 22 years ago
  48. 43b936d Patch #477750: Use METH_ constants in Modules. by Martin v. Löwis · 22 years ago
  49. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 22 years ago
  50. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  51. 5ebfd36 CVS patch #477161: New "access" keyword for mmap, from Jay T Miller. by Tim Peters · 23 years ago
  52. 10f9c07 Remove obsolete e-mail address by Andrew M. Kuchling · 23 years ago
  53. 1baac72 Fix SF #441664: Python crash on del of a slice of a mmap by Thomas Wouters · 23 years ago
  54. d401edd Fix new compiler warnings. Also boost "start" from (C) int to long and by Tim Peters · 23 years ago
  55. 834f4dd Fix the .find() method for memory maps. by Greg Stein · 23 years ago
  56. d6283b8 Minor fiddling related to SF patch 416251 2.1c1 mmapmodule: unused vrbl cleanup by Tim Peters · 23 years ago
  57. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  58. 2caf8df SF bug 128713: type(mmap_object) blew up on Linux. by Tim Peters · 23 years ago
  59. 5a53019 Part of SF patch #102409 by jlt63 to support building these modules by Guido van Rossum · 23 years ago
  60. 0d9f9dc Windows mmap should (as the docs probably <wink> say) create a mapping by Tim Peters · 23 years ago
  61. 145f96e my_getpagesize(): New function; returns the size of a page of memory. by Fred Drake · 24 years ago
  62. 4b36e6b For the benefit of SunOS 4.1.4, define MS_SYNC as 0 when it's by Guido van Rossum · 24 years ago
  63. 071864a More Windows changes. by Mark Hammond · 24 years ago
  64. 2cbed00 Fixes for Windows (but also tested on Linux). Test suite now completes, and this module should not leak in the face of errors. by Mark Hammond · 24 years ago
  65. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  66. 5cccf50 - added (long) casts to a couple of Py_BuildValue calls, by Fredrik Lundh · 24 years ago
  67. 54cf3dc -- ANSI-fying, names by Fredrik Lundh · 24 years ago
  68. da13f89 Remove definition of _GNU_SOURCE, since Python.h now does it for us by Andrew M. Kuchling · 24 years ago
  69. ce8e1dc clean up warnings in Win32 build of mmapmodule.c by Guido van Rossum · 24 years ago
  70. ea34a84 Patch from Lorenzo M. Catucci: by Andrew M. Kuchling · 24 years ago
  71. 6fef30e Support resizing the mapping depending on whether HAVE_MREMAP is defined by Andrew M. Kuchling · 24 years ago
  72. 70d2742 Patch from Trent Mick: by Andrew M. Kuchling · 24 years ago
  73. 9bc5f33 Removed MS_INVALIDATE flags by Andrew M. Kuchling · 24 years ago
  74. 7b9fb92 Fix the size() method to return the size of the file on Unix, not the by Andrew M. Kuchling · 24 years ago
  75. 841b9fb Use PyArg_ParseTuple and specify the method names, following a suggestion by Andrew M. Kuchling · 24 years ago
  76. 961fe17 Add missing PyArg_NoArgs() calls to methods that didn't take arguments by Andrew M. Kuchling · 24 years ago
  77. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  78. 36d4f8b Correct fix by Mark Favas for the cast problems. by Guido van Rossum · 24 years ago
  79. e110dcf I've had complaints about the comparison "where >= 0" before -- on by Guido van Rossum · 24 years ago
  80. 1ef4e2d Mark Hammond <mhammond@skippinet.com.au>: by Fred Drake · 24 years ago
  81. 56a87a0 Patch from Hrvoje Niksic <hniksic@iskon.hr>: by Fred Drake · 24 years ago
  82. 325942a Removed three unused variables from the Windows code. by Guido van Rossum · 24 years ago
  83. 09fdf07 Hacked for Win32 by Mark Hammond. by Guido van Rossum · 24 years ago
  84. 1ed7d2d Added mmap module -- map a view of a file into memory on Win32 and Unix. by Andrew M. Kuchling · 24 years ago