1. 2b597e4 Correct one-line typo, reported by yole @ SF, bug 130077. by Guido van Rossum · 23 years ago
  2. 05bbb9a The array type was missing the Py_TPFLAGS_DEFAULT initializer for the by Guido van Rossum · 23 years ago
  3. 9d19cb8 Same treatment as listobject.c: by Guido van Rossum · 23 years ago
  4. 7c1cb46 Fix for SF bug 117402, crashes on str(array) and repr(array). This was an by Tim Peters · 24 years ago
  5. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  6. 077a11d arraymodule: Fix SF bug 113960. by Tim Peters · 24 years ago
  7. bb30734 General cleanup in preparation for a bugfix: removed unused code, useless by Tim Peters · 24 years ago
  8. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  9. 8ce159a Peter Schneider-Kamp <nowonder@nowonder.de>: by Fred Drake · 24 years ago
  10. 6c116dd Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). fread by Trent Mick · 24 years ago
  11. 329e291 Removed decl of unreferenced vrbl. by Tim Peters · 24 years ago
  12. dc71cac replaced PyArgs_Parse by PyArgs_ParseTuple by Peter Schneider-Kamp · 24 years ago
  13. 5a65c2d added count, extend, index, pop and remove to arraymodule by Peter Schneider-Kamp · 24 years ago
  14. f3f33dc Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)', by Thomas Wouters · 24 years ago
  15. 9656abd ANSI-fication (got lost in the deep seas of source forge <wink>) by Peter Schneider-Kamp · 24 years ago
  16. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  17. db67739 Jack Jansen, Mac patch: by Guido van Rossum · 24 years ago
  18. 9f754e0 In b_setitem(), instead of the platform dependent CHAR_MIN and by Guido van Rossum · 24 years ago
  19. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  20. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  21. 7d0ae5e Trent Mick: use size_t instead of int where appropriate (in by Guido van Rossum · 24 years ago
  22. 541dc3b Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  23. 137507e Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  24. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  25. 0d40ba4 Patch from Paul Sokolovsky <Paul.Sokolovsky@technologist.com>: by Fred Drake · 24 years ago
  26. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 24 years ago
  27. bf27298 Correct the docstring for byteswap(); error noted by Bernhard Reiter by Fred Drake · 25 years ago
  28. 7f1de83 Tiny patch by Mark Hammond to avoid sys/types.h if we don't have it by Guido van Rossum · 25 years ago
  29. 481ac88 Use an unsigned cast to avoid a warning in VC++. by Guido van Rossum · 25 years ago
  30. 3791b0d Carefully check for overflow when allocating the memory for fromfile by Guido van Rossum · 25 years ago
  31. 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
  32. a0deb64 No need to issue a fatal error if the PyDict_SetItemString fails; the by Guido van Rossum · 26 years ago
  33. fc6aba5 ACK! There was still an unescaped newline in a docstring. by Guido van Rossum · 26 years ago
  34. b39b90d Doc strings by Chris Petrilli. by Guido van Rossum · 26 years ago
  35. de4a4ca Added buffer_info() method that returns address and length in bytes of by Guido van Rossum · 27 years ago
  36. 24995b9 array_type -> ArrayType by Guido van Rossum · 27 years ago
  37. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  38. b6190d3 Defined array.array_type, the type object. by Guido van Rossum · 27 years ago
  39. 1a747f8 Address the following problem on DOS and Win 3.1, reported by Jim Ahlstrom: by Guido van Rossum · 27 years ago
  40. fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 27 years ago
  41. 7844e38 Keep Microsoft VC happy. by Guido van Rossum · 27 years ago
  42. 549ab71 Add new formats B, H, I, L for unsigned data types (analogous to the by Guido van Rossum · 28 years ago
  43. 5817f8f Removed some unneeded header files and reedited with a fixed-width font by Roger E. Masse · 28 years ago
  44. 2919eaa Renamed Grandly (I think). by Roger E. Masse · 28 years ago
  45. a376cc5 Keep gcc -Wall happy. by Guido van Rossum · 28 years ago
  46. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  47. a320fd3 changes for MPW by Guido van Rossum · 29 years ago
  48. 62de97f make routines static by Guido van Rossum · 29 years ago
  49. cd938fc Made some more things static, and other cleanup for new naming scheme by Guido van Rossum · 30 years ago
  50. 524b588 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  51. 3bbc62e Another bulky set of minor changes. by Guido van Rossum · 30 years ago
  52. 0c70954 Changes for Mac by Guido van Rossum · 30 years ago
  53. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  54. b376a4a * timemodule.c: Add hack for Solaris 2. by Guido van Rossum · 31 years ago
  55. a3d78fb * posixmodule.c: added set{uid,gid}. by Guido van Rossum · 31 years ago
  56. 32be3a7 Fix stupib bug in concatenation by Guido van Rossum · 31 years ago
  57. e77a757 * nismodule.c: database keys and values can contain null bytes. be more by Guido van Rossum · 31 years ago
  58. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  59. a9c3c22 * Extended X interface: pixmap objects, colormap objects visual objects, by Sjoerd Mullender · 31 years ago
  60. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  61. 9575a44 * Microscopic corrections to make things compile on the Cray APP. by Guido van Rossum · 31 years ago
  62. 778983b Added new module "array" (for now optional) defining array objects. by Guido van Rossum · 31 years ago