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