1. 8bb1ae9 All calls to getarrayitem() (which is static) are done either in loops by Walter Dörwald · 21 years ago
  2. 9e46abe Fix array.array.insert(), so that it treats negative indices as by Walter Dörwald · 21 years ago
  3. 84fc9aa SF 686323: Minor array module enhancements by Raymond Hettinger · 21 years ago
  4. 88ba1e3 SF Patch 685051: fix for 680789: reprs in arraymodule by Raymond Hettinger · 21 years ago
  5. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  6. e0cce8f Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  7. 937ca98 SF patch #687598, array.append is sloooow by Neal Norwitz · 21 years ago
  8. 8437570 Patch #676837: Cygwin array module patch by Jason Tishler · 21 years ago
  9. 625812f SF patch #662433: Fill arraymodule's tp_iter and sq_contains slots by Raymond Hettinger · 22 years ago
  10. fb8595d Patch #661760: Cygwin auto-import module patch by Jason Tishler · 22 years ago
  11. 36cd2bf SF patch 660559: Use METH_O and METH_NOARGS where possible by Raymond Hettinger · 22 years ago
  12. fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 22 years ago
  13. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  14. 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 22 years ago
  15. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  16. 9c14bad Fix the bug described in by Michael W. Hudson · 22 years ago
  17. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  18. 1755ad9 array_tounicode isn't defined in --disable-unicode builds... by Michael W. Hudson · 22 years ago
  19. b9132a2 Indicate delayed initialization of slots. Suggested by tim.one. by Martin v. Löwis · 22 years ago
  20. edbffc1 Patch #551009: Initialize array type dynamically. by Martin v. Löwis · 22 years ago
  21. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  22. f4e3484 Use the PyModule_*() API instead of manipulating the module dictionary directly. by Fred Drake · 22 years ago
  23. aa158be Remove tp_print. by Martin v. Löwis · 22 years ago
  24. 9986633 Patch 520694: arraymodule.c improvements: by Martin v. Löwis · 22 years ago
  25. 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
  26. 885d457 sprintf -> PyOS_snprintf in some "obviously safe" cases. by Tim Peters · 23 years ago
  27. 702d08e Fix buffer_info() docstring to match reality. See SF bug #444842. by Guido van Rossum · 23 years ago
  28. b870c75 Make it possible to find the use of tp_as_buffer here with a global search. by Tim Peters · 23 years ago
  29. 2b597e4 Correct one-line typo, reported by yole @ SF, bug 130077. by Guido van Rossum · 23 years ago
  30. 05bbb9a The array type was missing the Py_TPFLAGS_DEFAULT initializer for the by Guido van Rossum · 23 years ago
  31. 9d19cb8 Same treatment as listobject.c: by Guido van Rossum · 23 years ago
  32. 7c1cb46 Fix for SF bug 117402, crashes on str(array) and repr(array). This was an by Tim Peters · 24 years ago
  33. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  34. 077a11d arraymodule: Fix SF bug 113960. by Tim Peters · 24 years ago
  35. bb30734 General cleanup in preparation for a bugfix: removed unused code, useless by Tim Peters · 24 years ago
  36. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  37. 8ce159a Peter Schneider-Kamp <nowonder@nowonder.de>: by Fred Drake · 24 years ago
  38. 6c116dd Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). fread by Trent Mick · 24 years ago
  39. 329e291 Removed decl of unreferenced vrbl. by Tim Peters · 24 years ago
  40. dc71cac replaced PyArgs_Parse by PyArgs_ParseTuple by Peter Schneider-Kamp · 24 years ago
  41. 5a65c2d added count, extend, index, pop and remove to arraymodule by Peter Schneider-Kamp · 24 years ago
  42. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  43. 9656abd ANSI-fication (got lost in the deep seas of source forge <wink>) by Peter Schneider-Kamp · 24 years ago
  44. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  45. db67739 Jack Jansen, Mac patch: by Guido van Rossum · 24 years ago
  46. 9f754e0 In b_setitem(), instead of the platform dependent CHAR_MIN and by Guido van Rossum · 24 years ago
  47. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  48. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  49. 7d0ae5e Trent Mick: use size_t instead of int where appropriate (in by Guido van Rossum · 24 years ago
  50. 541dc3b Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  51. 137507e Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  52. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  53. 0d40ba4 Patch from Paul Sokolovsky <Paul.Sokolovsky@technologist.com>: by Fred Drake · 24 years ago
  54. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 24 years ago
  55. bf27298 Correct the docstring for byteswap(); error noted by Bernhard Reiter by Fred Drake · 25 years ago
  56. 7f1de83 Tiny patch by Mark Hammond to avoid sys/types.h if we don't have it by Guido van Rossum · 25 years ago
  57. 481ac88 Use an unsigned cast to avoid a warning in VC++. by Guido van Rossum · 25 years ago
  58. 3791b0d Carefully check for overflow when allocating the memory for fromfile by Guido van Rossum · 25 years ago
  59. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  60. a0deb64 No need to issue a fatal error if the PyDict_SetItemString fails; the by Guido van Rossum · 26 years ago
  61. fc6aba5 ACK! There was still an unescaped newline in a docstring. by Guido van Rossum · 26 years ago
  62. b39b90d Doc strings by Chris Petrilli. by Guido van Rossum · 26 years ago
  63. de4a4ca Added buffer_info() method that returns address and length in bytes of by Guido van Rossum · 27 years ago
  64. 24995b9 array_type -> ArrayType by Guido van Rossum · 27 years ago
  65. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  66. b6190d3 Defined array.array_type, the type object. by Guido van Rossum · 27 years ago
  67. 1a747f8 Address the following problem on DOS and Win 3.1, reported by Jim Ahlstrom: by Guido van Rossum · 27 years ago
  68. fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 27 years ago
  69. 7844e38 Keep Microsoft VC happy. by Guido van Rossum · 27 years ago
  70. 549ab71 Add new formats B, H, I, L for unsigned data types (analogous to the by Guido van Rossum · 28 years ago
  71. 5817f8f Removed some unneeded header files and reedited with a fixed-width font by Roger E. Masse · 28 years ago
  72. 2919eaa Renamed Grandly (I think). by Roger E. Masse · 28 years ago
  73. a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
  74. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  75. a320fd3 changes for MPW by Guido van Rossum · 29 years ago
  76. 62de97f make routines static by Guido van Rossum · 29 years ago
  77. cd938fc Made some more things static, and other cleanup for new naming scheme by Guido van Rossum · 29 years ago
  78. 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  79. 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 30 years ago
  80. 0c70954 Changes for Mac by Guido van Rossum · 30 years ago
  81. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  82. b376a4a * timemodule.c: Add hack for Solaris 2. by Guido van Rossum · 31 years ago
  83. a3d78fb * posixmodule.c: added set{uid,gid}. by Guido van Rossum · 31 years ago
  84. 32be3a7 Fix stupib bug in concatenation by Guido van Rossum · 31 years ago
  85. e77a757 * nismodule.c: database keys and values can contain null bytes. be more by Guido van Rossum · 31 years ago
  86. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  87. a9c3c22 * Extended X interface: pixmap objects, colormap objects visual objects, by Sjoerd Mullender · 31 years ago
  88. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  89. 9575a44 * Microscopic corrections to make things compile on the Cray APP. by Guido van Rossum · 31 years ago
  90. 778983b Added new module "array" (for now optional) defining array objects. by Guido van Rossum · 31 years ago