1. 5e68433 Merged revisions 83751-83752 via svnmerge from by Mark Dickinson · 15 years ago
  2. 7a7013e Merged revisions 83030 via svnmerge from by Antoine Pitrou · 15 years ago
  3. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  4. d5fdc06 Silence more 'comparison between signed and unsigned' warnings. by Mark Dickinson · 15 years ago
  5. 36ecd67 Issue #7788: Fix a crash produced by deleting a list slice with huge by Mark Dickinson · 16 years ago
  6. 999ecc0 Issue #2389: Pickle array objects using a list representation for portability by Alexandre Vassalotti · 16 years ago
  7. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  8. 0470bab Issue #2620: Overflow checking when allocating or reallocating memory by Gregory P. Smith · 17 years ago
  9. 111c180 Make more symbols static. by Martin v. Löwis · 17 years ago
  10. 705cd06 Fix some memory dealloc problems when exceptions occur. by Neal Norwitz · 17 years ago
  11. 9d53457 Merge in release25-maint r60793: by Gregory P. Smith · 17 years ago
  12. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
  13. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
  14. f19a7b9 A little reformating of Py3k warnings by Benjamin Peterson · 17 years ago
  15. 9f4f481 Use PyErr_WarnPy3k throughout by Benjamin Peterson · 17 years ago
  16. 1e7c375 #2359: add Py3k warning for array.read/array.write. by Georg Brandl · 17 years ago
  17. 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 · 18 years ago
  18. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 18 years ago
  19. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  20. 01a807d Array module's buffer interface can now handle empty arrays. by Raymond Hettinger · 18 years ago
  21. e6e660b SF #1693079: Cannot save empty array in shelve by Raymond Hettinger · 18 years ago
  22. b84c137 Bug #1486663: don't reject keyword arguments for subclasses of builtin types. by Georg Brandl · 19 years ago
  23. 9e398ca Fix SF bug #1545837: array.array borks on deepcopy. by Thomas Wouters · 19 years ago
  24. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 19 years ago
  25. 6f5ff3f Klocwork made another run and found a bunch more problems. by Neal Norwitz · 19 years ago
  26. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 19 years ago
  27. de3b052 Buffer objects would return the read or write buffer for a wrapped object when by Brett Cannon · 19 years ago
  28. 2856e5f Support for buffer protocol for socket and struct. by Martin Blais · 19 years ago
  29. cbe2e49 C++ compiler cleanup: a cast here, a cast there... still does not compile under C++ though... by Skip Montanaro · 19 years ago
  30. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
  31. 92a6be4 Whitespace: break long line by Neal Norwitz · 19 years ago
  32. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  33. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
  34. b9eb551 Convert array.array.insert to use Py_ssize_t (like the rest already does.) by Thomas Wouters · 19 years ago
  35. 1b67267 Bug #1432350: arrayobject should use PyObject_VAR_HEAD by Georg Brandl · 19 years ago
  36. 7a2f83b Use correct format specifier for Py_ssize_t variable to PyArg_ParseTuple(). by Thomas Wouters · 19 years ago
  37. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
  38. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  39. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 20 years ago
  40. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 20 years ago
  41. b0900e6 SF #1085304: Make array.array pickle-able by Raymond Hettinger · 21 years ago
  42. 6ab78cd SF feature request #992967: array.array objects should support sequences. by Raymond Hettinger · 21 years ago
  43. cb87bc8 Add weakref support to array.array and file objects. by Raymond Hettinger · 21 years ago
  44. 49f9bd1 SF feature request #686323: Minor array module enhancements by Raymond Hettinger · 21 years ago
  45. 6e2ee86 Update the array overallocation scheme to match the approach used for by Raymond Hettinger · 21 years ago
  46. 3aa82c0 SF bug #910986: copy.copy fails for array.array by Raymond Hettinger · 21 years ago
  47. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 22 years ago
  48. 85004cc SF bug #782369: Massive memory leak in array module by Raymond Hettinger · 22 years ago
  49. 8bb1ae9 All calls to getarrayitem() (which is static) are done either in loops by Walter Dörwald · 22 years ago
  50. 9e46abe Fix array.array.insert(), so that it treats negative indices as by Walter Dörwald · 22 years ago
  51. 84fc9aa SF 686323: Minor array module enhancements by Raymond Hettinger · 22 years ago
  52. 88ba1e3 SF Patch 685051: fix for 680789: reprs in arraymodule by Raymond Hettinger · 22 years ago
  53. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 22 years ago
  54. e0cce8f Created PyObject_GenericGetIter(). by Raymond Hettinger · 22 years ago
  55. 937ca98 SF patch #687598, array.append is sloooow by Neal Norwitz · 22 years ago
  56. 8437570 Patch #676837: Cygwin array module patch by Jason Tishler · 22 years ago
  57. 625812f SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots by Raymond Hettinger · 23 years ago
  58. fb8595d Patch #661760: Cygwin auto-import module patch by Jason Tishler · 23 years ago
  59. 36cd2bf SF patch 660559: Use METH_O and METH_NOARGS where possible by Raymond Hettinger · 23 years ago
  60. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 23 years ago
  61. 56796f6 Fix for by Michael W. Hudson · 23 years ago
  62. 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 23 years ago
  63. 938ace6 staticforward bites the dust. by Jeremy Hylton · 23 years ago
  64. 9c14bad Fix the bug described in by Michael W. Hudson · 23 years ago
  65. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 23 years ago
  66. 1755ad9 array_tounicode isn't defined in --disable-unicode builds... by Michael W. Hudson · 23 years ago
  67. b9132a2 Indicate delayed initialization of slots. Suggested by tim.one. by Martin v. Löwis · 23 years ago
  68. edbffc1 Patch #551009: Initialize array type dynamically. by Martin v. Löwis · 23 years ago
  69. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 23 years ago
  70. f4e3484 Use the PyModule_*() API instead of manipulating the module dictionary directly. by Fred Drake · 23 years ago
  71. aa158be Remove tp_print. by Martin v. Löwis · 23 years ago
  72. 9986633 Patch 520694: arraymodule.c improvements: by Martin v. Löwis · 23 years ago
  73. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 24 years ago
  74. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 24 years ago
  75. 702d08e Fix buffer_info() docstring to match reality. See SF bug #444842. by Guido van Rossum · 24 years ago
  76. b870c75 Make it possible to find the use of tp_as_buffer here with a global search. by Tim Peters · 24 years ago
  77. 2b597e4 Correct one-line typo, reported by yole @ SF, bug 130077. by Guido van Rossum · 25 years ago
  78. 05bbb9a The array type was missing the Py_TPFLAGS_DEFAULT initializer for the by Guido van Rossum · 25 years ago
  79. 9d19cb8 Same treatment as listobject.c: by Guido van Rossum · 25 years ago
  80. 7c1cb46 Fix for SF bug 117402, crashes on str(array) and repr(array). This was an by Tim Peters · 25 years ago
  81. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 25 years ago
  82. 077a11d arraymodule: Fix SF bug 113960. by Tim Peters · 25 years ago
  83. bb30734 General cleanup in preparation for a bugfix: removed unused code, useless by Tim Peters · 25 years ago
  84. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 25 years ago
  85. 8ce159a Peter Schneider-Kamp <nowonder@nowonder.de>: by Fred Drake · 25 years ago
  86. 6c116dd Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). fread by Trent Mick · 25 years ago
  87. 329e291 Removed decl of unreferenced vrbl. by Tim Peters · 25 years ago
  88. dc71cac replaced PyArgs_Parse by PyArgs_ParseTuple by Peter Schneider-Kamp · 25 years ago
  89. 5a65c2d added count, extend, index, pop and remove to arraymodule by Peter Schneider-Kamp · 25 years ago
  90. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 25 years ago
  91. 9656abd ANSI-fication (got lost in the deep seas of source forge <wink>) by Peter Schneider-Kamp · 25 years ago
  92. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 25 years ago
  93. db67739 Jack Jansen, Mac patch: by Guido van Rossum · 25 years ago
  94. 9f754e0 In b_setitem(), instead of the platform dependent CHAR_MIN and by Guido van Rossum · 25 years ago
  95. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 25 years ago
  96. fd71b9e Change copyright notice. by Guido van Rossum · 25 years ago
  97. 7d0ae5e Trent Mick: use size_t instead of int where appropriate (in by Guido van Rossum · 25 years ago
  98. 541dc3b Trent Mick <trentm@activestate.com>: by Fred Drake · 25 years ago
  99. 137507e Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 25 years ago
  100. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago