1. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  2. e92e610 Christian Tismer -- total rewrite on trashcan code. by Guido van Rossum · 24 years ago
  3. 4a3dd2d Fix PR#7 comparisons of recursive objects by Jeremy Hylton · 24 years ago
  4. b244f69 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  5. 5db862d Skip Montanaro: add string precisions to calls to PyErr_Format by Guido van Rossum · 24 years ago
  6. 13ff8eb Christian Tismer: by Guido van Rossum · 24 years ago
  7. d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 24 years ago
  8. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  9. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 24 years ago
  10. 687ef6e On Linux, one sometimes sees spurious errors after interrupting by Guido van Rossum · 25 years ago
  11. b4db194 When comparing objects, always check that tp_compare is not NULL by Guido van Rossum · 26 years ago
  12. cd5a5f6 When comparing objects of different types (which is done by comparing by Guido van Rossum · 26 years ago
  13. 1c4f458 In PyObject_IsTrue(), don't call function pointers that are NULL by Guido van Rossum · 26 years ago
  14. 9b00dfa If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and str by Guido van Rossum · 26 years ago
  15. 565798d Be less naive about null characters in an object's repr(). by Guido van Rossum · 26 years ago
  16. eb90946 Some robustness checks in Py_ReprLeave() in the unlikely event someone by Guido van Rossum · 26 years ago
  17. 8661036 Add implementations of Py_Repr{Enter,Leave}. by Guido van Rossum · 26 years ago
  18. c3d3f96 Add PyObject_Not(). by Guido van Rossum · 26 years ago
  19. db93516 Instead of "attribute-less object", issue an error message that by Guido van Rossum · 26 years ago
  20. 242c642 Add a new function PyNumber_CoerceEx() which works just like by Guido van Rossum · 27 years ago
  21. ea46e4d Fix mixup about PyErr_NoMemory() prototype. by Guido van Rossum · 27 years ago
  22. e09fb55 Added _Py_ResetReferences(), if tracing references. by Guido van Rossum · 27 years ago
  23. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  24. 98ff96a Moved PyObject_{Get,Set}Attr here (from dictobject) and add PyObject_HasAttr. by Guido van Rossum · 27 years ago
  25. d0c87ee Oops, another forgotten renaming: varobject -> PyVarObject. by Guido van Rossum · 27 years ago
  26. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  27. c6d0670 Intern the strings created in getattr() and setattr(). by Guido van Rossum · 27 years ago
  28. da9c271 Make gcc -Wall happy by Guido van Rossum · 28 years ago
  29. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  30. b7fc304 Correct typo in setattr: return -1 for error, not NULL by Guido van Rossum · 28 years ago
  31. aacdc9d Define reference count admin debug functions to return void. by Guido van Rossum · 28 years ago
  32. d8eb1b3 Support for tp_getattro, tp_setattro (Sjoerd) by Guido van Rossum · 28 years ago
  33. f5030ab Hacks for MS_COREDLL by Guido van Rossum · 28 years ago
  34. ded690f rename printrefs, getobjects to _Py_ prefix by Guido van Rossum · 28 years ago
  35. 84a9032 TRACE_REFS -> Py_TRACE_REFS. by Guido van Rossum · 28 years ago
  36. 97ead3f Hack to force loading of cobject.o by Guido van Rossum · 29 years ago
  37. 6ec3c65 Implemented two new functions in sys: by Sjoerd Mullender · 29 years ago
  38. 1311e3c args to call_object must be tuple or NULL by Guido van Rossum · 29 years ago
  39. d8953cb change in counting freed objects by Guido van Rossum · 29 years ago
  40. 6f9e433 fix dusty debugging macros by Guido van Rossum · 29 years ago
  41. 2497ead make size arg signed by Guido van Rossum · 29 years ago
  42. 49b11fe move callable() here by Guido van Rossum · 29 years ago
  43. 32b582b fix strobject() behavior by Guido van Rossum · 30 years ago
  44. 2056684 properly implement cmp() for class instances by Guido van Rossum · 30 years ago
  45. 5524a59 move coerce() from bltinmodule.c to object.c and implement builtin_coerce() differently by Guido van Rossum · 30 years ago
  46. 016564a attribute-less object is AttributeError, not TypeError by Guido van Rossum · 30 years ago
  47. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  48. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  49. 9776adf rearranged code in debugging version of DELREF to avoid touching data by Guido van Rossum · 30 years ago
  50. 1d5735e Merge back to main trunk by Guido van Rossum · 30 years ago
  51. c600411 * mpzmodule.c: removed redundant mpz_print function. by Guido van Rossum · 31 years ago
  52. 52c1f51 import.c: When something is wrong with the .pyc, properly open the .py by Sjoerd Mullender · 31 years ago
  53. 3bb8a05 Several optimizations and speed improvements. by Sjoerd Mullender · 31 years ago
  54. 842d2cc intobject.c: Save references to small integers, so that they can be by Sjoerd Mullender · 31 years ago
  55. a9c3c22 * Extended X interface: pixmap objects, colormap objects visual objects, by Sjoerd Mullender · 31 years ago
  56. ed18fdc * accessobject.c (ownercheck): allow a base class access to protected by Guido van Rossum · 31 years ago
  57. 6ac258d * pythonrun.c: Print exception type+arg *after* stack trace instead of by Guido van Rossum · 31 years ago
  58. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  59. 7066dd7 * Makefile: added IMGFILE; moved some stuff around. by Guido van Rossum · 32 years ago
  60. 2e8f614 If a type has a repr function but no print function, printing it now by Guido van Rossum · 32 years ago
  61. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  62. 0c182a1 Fix lint bug by Guido van Rossum · 32 years ago
  63. 3ea7412 Change error messages for impossible assignment slightly. by Guido van Rossum · 33 years ago
  64. 2912f22 Use IOError. by Guido van Rossum · 33 years ago
  65. 278ef59 Check for write errors after printing a value by Guido van Rossum · 33 years ago
  66. 9fb0368 Change cmpobject() to coerce numerical values before comparing them by Guido van Rossum · 33 years ago
  67. 9093361 printobject now returns an error code by Guido van Rossum · 33 years ago
  68. 05ab111 Enabled (and fixed) newvarobject() by Guido van Rossum · 33 years ago
  69. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  70. 73531a3 Return -1 for errors. by Guido van Rossum · 34 years ago
  71. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  72. bd3edc8 Removed redundant prototype for err_nomem(). by Guido van Rossum · 34 years ago
  73. 85a5fbb Initial revision by Guido van Rossum · 34 years ago