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