1. eefb107 _PyObject_Dump(): If argument is NULL, print "NULL" instead of crashing. by Barry Warsaw · 23 years ago
  2. 2da0ea8 In try_3way_to_rich_compare(), swap the call to default_3way_compare() by Guido van Rossum · 23 years ago
  3. 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 23 years ago
  4. d1f06b9 Check the Py_TPFLAGS_HAVE_RICHCOMPARE flag before using the by Guido van Rossum · 24 years ago
  5. bbd89b6 PyObject_Dump() -> _PyObject_Dump() by Barry Warsaw · 24 years ago
  6. 903138f PyObject_Dump(): Use %p format to print the address of the pointer. by Barry Warsaw · 24 years ago
  7. 9bf1644 A few miscellaneous helpers. by Barry Warsaw · 24 years ago
  8. 0871e93 New special case in comparisons: None is smaller than any other object by Guido van Rossum · 24 years ago
  9. 8f9143d Once again, numeric-smelling objects compare smaller than non-numeric ones. by Guido van Rossum · 24 years ago
  10. d38855c Remove a smelly export. by Neil Schemenauer · 24 years ago
  11. b0e754d Tim chastens: by Barry Warsaw · 24 years ago
  12. 71ff8d5 default_3way_compare(): When comparing the pointers, they must be cast by Barry Warsaw · 24 years ago
  13. 41c3244 Rich comparisons fallout: PyObject_Hash() should check for both by Guido van Rossum · 24 years ago
  14. a3af41d Changes to recursive-object comparisons, having to do with a test case by Guido van Rossum · 24 years ago
  15. 2ffbf6b Deal properly (?) with comparing recursive datastructures. by Guido van Rossum · 24 years ago
  16. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 24 years ago
  17. e797ec1 Rich comparisons. Refactored internal routine do_cmp() and added APIs by Guido van Rossum · 24 years ago
  18. 5ed85ec Changes for PEP 208. PyObject_Compare has been rewritten. Instances no by Neil Schemenauer · 24 years ago
  19. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  20. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  21. 1e3c8cc As suggested by Toby Dickenson, setting ob_type to NULL in by Guido van Rossum · 24 years ago
  22. e44e507 PyObject_SetAttr() and PyObject_GetAttr() now also accept Unicode by Marc-André Lemburg · 24 years ago
  23. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  24. 9c0a99e PyOS_CheckStack() returns 1 when failing, not -1. by Guido van Rossum · 24 years ago
  25. d49cbe1 Added PyOS_CheckStack call to PyObject_Compare by Jack Jansen · 24 years ago
  26. 9d23a4e make_pair(): When comparing the pointers, they must be cast to integer by Barry Warsaw · 24 years ago
  27. 1582a3a Updated comment by Andrew M. Kuchling · 24 years ago
  28. 39dce29 Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. by Tim Peters · 24 years ago
  29. 1d3e239 Fix missing decrements of the recursive counter in PyObject_Compare(). by Vladimir Marangozov · 24 years ago
  30. cf703f0 Removing warnings found by gcc -Wall by Moshe Zadka · 24 years ago
  31. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  32. 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago
  33. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  34. 8dc19f6 Propagate the current exception in get_inprogress_dict() -- it doesn't by Vladimir Marangozov · 24 years ago
  35. 6253f83 change abstract size functions PySequence_Size &c. by Jeremy Hylton · 24 years ago
  36. 28fc880 Include macglue.h on the macintosh, so function prototypes are in scope. by Jack Jansen · 24 years ago
  37. 100814d ANSI-fication of the sources. by Fred Drake · 24 years ago
  38. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  39. 2a1e060 - changed __repr__ to use "unicode escape" encoding for unicode by Fredrik Lundh · 24 years ago
  40. 4cbc9f7 delete unused local variable from _PyTrash_deposit_object by Skip Montanaro · 24 years ago
  41. 891bc65 If auto-conversion fails, the Unicode codecs will return NULL. by Marc-André Lemburg · 24 years ago
  42. efecc7d changed repr and str to always convert unicode strings by Fredrik Lundh · 24 years ago
  43. 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
  44. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  45. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  46. a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  47. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  48. 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 24 years ago
  49. ad89bbc Trent Mick: change a few casts for Win64 compatibility. by Guido van Rossum · 24 years ago
  50. 99a8f90 raise TypeError when PyObject_Get/SetAttr called with non-string name by Jeremy Hylton · 24 years ago
  51. a251ea0 the PyDict_SetItem does not borrow a reference, so we need to decref by Jeremy Hylton · 24 years ago
  52. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  53. e92e610 Christian Tismer -- total rewrite on trashcan code. by Guido van Rossum · 24 years ago
  54. 4a3dd2d Fix PR#7 comparisons of recursive objects by Jeremy Hylton · 24 years ago
  55. b244f69 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  56. 5db862d Skip Montanaro: add string precisions to calls to PyErr_Format by Guido van Rossum · 24 years ago
  57. 13ff8eb Christian Tismer: by Guido van Rossum · 24 years ago
  58. d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 24 years ago
  59. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  60. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  61. 687ef6e On Linux, one sometimes sees spurious errors after interrupting by Guido van Rossum · 25 years ago
  62. b4db194 When comparing objects, always check that tp_compare is not NULL by Guido van Rossum · 26 years ago
  63. cd5a5f6 When comparing objects of different types (which is done by comparing by Guido van Rossum · 26 years ago
  64. 1c4f458 In PyObject_IsTrue(), don't call function pointers that are NULL by Guido van Rossum · 26 years ago
  65. 9b00dfa If USE_STACKCHECK is defined use PyOS_CheckStack() in the repr and str by Guido van Rossum · 26 years ago
  66. 565798d Be less naive about null characters in an object's repr(). by Guido van Rossum · 26 years ago
  67. eb90946 Some robustness checks in Py_ReprLeave() in the unlikely event someone by Guido van Rossum · 26 years ago
  68. 8661036 Add implementations of Py_Repr{Enter,Leave}. by Guido van Rossum · 26 years ago
  69. c3d3f96 Add PyObject_Not(). by Guido van Rossum · 26 years ago
  70. db93516 Instead of "attribute-less object", issue an error message that by Guido van Rossum · 27 years ago
  71. 242c642 Add a new function PyNumber_CoerceEx() which works just like by Guido van Rossum · 27 years ago
  72. ea46e4d Fix mixup about PyErr_NoMemory() prototype. by Guido van Rossum · 27 years ago
  73. e09fb55 Added _Py_ResetReferences(), if tracing references. by Guido van Rossum · 27 years ago
  74. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  75. 98ff96a Moved PyObject_{Get,Set}Attr here (from dictobject) and add PyObject_HasAttr. by Guido van Rossum · 27 years ago
  76. d0c87ee Oops, another forgotten renaming: varobject -> PyVarObject. by Guido van Rossum · 27 years ago
  77. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  78. c6d0670 Intern the strings created in getattr() and setattr(). by Guido van Rossum · 28 years ago
  79. da9c271 Make gcc -Wall happy by Guido van Rossum · 28 years ago
  80. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  81. b7fc304 Correct typo in setattr: return -1 for error, not NULL by Guido van Rossum · 28 years ago
  82. aacdc9d Define reference count admin debug functions to return void. by Guido van Rossum · 28 years ago
  83. d8eb1b3 Support for tp_getattro, tp_setattro (Sjoerd) by Guido van Rossum · 28 years ago
  84. f5030ab Hacks for MS_COREDLL by Guido van Rossum · 28 years ago
  85. ded690f rename printrefs, getobjects to _Py_ prefix by Guido van Rossum · 28 years ago
  86. 84a9032 TRACE_REFS -> Py_TRACE_REFS. by Guido van Rossum · 28 years ago
  87. 97ead3f Hack to force loading of cobject.o by Guido van Rossum · 29 years ago
  88. 6ec3c65 Implemented two new functions in sys: by Sjoerd Mullender · 29 years ago
  89. 1311e3c args to call_object must be tuple or NULL by Guido van Rossum · 29 years ago
  90. d8953cb change in counting freed objects by Guido van Rossum · 29 years ago
  91. 6f9e433 fix dusty debugging macros by Guido van Rossum · 29 years ago
  92. 2497ead make size arg signed by Guido van Rossum · 29 years ago
  93. 49b11fe move callable() here by Guido van Rossum · 30 years ago
  94. 32b582b fix strobject() behavior by Guido van Rossum · 30 years ago
  95. 2056684 properly implement cmp() for class instances by Guido van Rossum · 30 years ago
  96. 5524a59 move coerce() from bltinmodule.c to object.c and implement builtin_coerce() differently by Guido van Rossum · 30 years ago
  97. 016564a attribute-less object is AttributeError, not TypeError by Guido van Rossum · 30 years ago
  98. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  99. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  100. 9776adf rearranged code in debugging version of DELREF to avoid touching data by Guido van Rossum · 30 years ago