1. a62da1d Merged revisions 59921-59932 via svnmerge from by Christian Heimes · 17 years ago
  2. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  3. c896700 Partial fix for bug #1306 by Christian Heimes · 17 years ago
  4. b7f17e4 Found another memory leak in longrangeiter. And redo the previous correction by Amaury Forgeot d'Arc · 17 years ago
  5. a1e9ec4 Correct a memory leak: the range() object was not properly freed. by Amaury Forgeot d'Arc · 17 years ago
  6. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  7. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  8. 826d897 Patch 1352 (continued in issue 1329) by Christian Heimes. by Guido van Rossum · 17 years ago
  9. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  10. 6ea45d3 Use unicode and remove support for some uses of str8. by Neal Norwitz · 17 years ago
  11. 6ca130d Oops. The PyObject_Print() function was totally broken; the original code by Guido van Rossum · 17 years ago
  12. 04dbf3b Kill all uses and definitions of tp_print under Objects/. (Others will follow.) by Guido van Rossum · 17 years ago
  13. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  14. 3b64580 Remove unused local variable. by Thomas Heller · 17 years ago
  15. 55b4a7b Make test_descr.py pass. Had to disable a few tests, remove references by Guido van Rossum · 17 years ago
  16. d376dd9 Simplify error formatting. by Walter Dörwald · 17 years ago
  17. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  18. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  19. b03ccc0 Simplify PyObject_Unicode(NULL) by using PyUnicode_FromString(). by Walter Dörwald · 17 years ago
  20. c8c8233 It's ok for __repr__ to return unicode. by Guido van Rossum · 17 years ago
  21. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  22. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  23. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  24. ed3b838 Check the keys of the locals dict -- they need not be a list. by Georg Brandl · 18 years ago
  25. e32b422 Patch #1591665: implement the __dir__() special function lookup in PyObject_Dir. by Georg Brandl · 18 years ago
  26. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
  27. 9a4e95c The opstrings table was backwards. Add an XXX comment. by Guido van Rossum · 18 years ago
  28. 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 18 years ago
  29. ca81046 Get rid of more coerce cruft (really check in this time :-) by Neal Norwitz · 18 years ago
  30. 3bd844e Get rid of most of the remaining uses of <>. There's still Tools/* thogh. by Neal Norwitz · 18 years ago
  31. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  32. 3893815 Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden by Guido van Rossum · 18 years ago
  33. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  34. 4886cc3 Get rid of most of the rest of coerce (slot is still there for now). by Neal Norwitz · 18 years ago
  35. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  36. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  37. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  38. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  39. 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 18 years ago
  40. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  41. 7580146 Fix and test (manually w/xx module) passing NULLs to PyObject_Str() and by Neal Norwitz · 19 years ago
  42. 3daf758 Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExact by Georg Brandl · 19 years ago
  43. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  44. 84632ee Oops, forgot to include this in the last checkin. by Neal Norwitz · 19 years ago
  45. 8b87a0b Use %ld and casts to long for refcount printing, in absense of a universally by Thomas Wouters · 19 years ago
  46. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  47. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  48. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  49. cf52c07 Change the %s format specifier for str objects so that it returns a by Neil Schemenauer · 19 years ago
  50. c3647ac Make subclasses of int, long, complex, float, and unicode perform type by Brett Cannon · 19 years ago
  51. a174813 Dima Dorfman's patch for coercion/comparison of C types (patch #995939), with by Armin Rigo · 20 years ago
  52. a5ca2e7 Remove 'extern' declaration for _Py_SwappedOp. by Brett Cannon · 20 years ago
  53. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  54. 1593f50 Move a comment back to its rightful location. by Michael W. Hudson · 20 years ago
  55. 2a7dede SF bug #1004669: Type returned from .keys() is not checked by Raymond Hettinger · 20 years ago
  56. 93468ea Remove unused macros in .c files by Neal Norwitz · 20 years ago
  57. 0a4dd39 Make weak references subclassable: by Fred Drake · 20 years ago
  58. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  59. 1328b52 Two new public API functions, Py_IncRef and Py_DecRef. Useful for by Thomas Heller · 20 years ago
  60. 8183fa4 Fix typo in comment. by Raymond Hettinger · 21 years ago
  61. 93d4481 Add identity shortcut to PyObject_RichCompareBool. by Raymond Hettinger · 21 years ago
  62. fb5a4e3 Removed two unneeded lines from PyObject_Compare(). by Brett Cannon · 21 years ago
  63. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  64. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  65. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
  66. b2c7de4 Fix for by Michael W. Hudson · 21 years ago
  67. 21d7d4d _Py_PrintReferenceAddresses(): also print the type name. In real use by Tim Peters · 21 years ago
  68. 269b2a6 _Py_PrintReferences(): Changed to print object address at start of each by Tim Peters · 21 years ago
  69. 0fc8f00 - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() by Guido van Rossum · 21 years ago
  70. 51f8d38 Typo in comment. by Tim Peters · 22 years ago
  71. 7571a0f Improved new Py_TRACE_REFS gimmicks. by Tim Peters · 22 years ago
  72. 36eb4df Refactored some of the Py_TRACE_REFS code. New private API function by Tim Peters · 22 years ago
  73. 3e40c7f Oops! Used a wrong preprocessor symbol. by Tim Peters · 22 years ago
  74. 78be799 When Py_TRACE_REFS is defined, a list of all live objects is maintained in by Tim Peters · 22 years ago
  75. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 22 years ago
  76. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 22 years ago
  77. 90195e2 PyObject_Generic{Get,Set}Attr: by Guido van Rossum · 22 years ago
  78. fb50d3f default_3way_compare(): use PyNumber_Check(), rather than testing for by Guido van Rossum · 22 years ago
  79. 18e7083 SF bug 681122: Built-in function dir() causes refcount leak in baseclasses. by Tim Peters · 22 years ago
  80. 4440f22 Recursive compare machinery: The code that intended to exempt tuples by Tim Peters · 22 years ago
  81. 1a99750 Fix SF bug #667147, Segmentation fault printing str subclass by Neal Norwitz · 22 years ago
  82. 89350a4 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes by Neil Schemenauer · 22 years ago
  83. 6e08c14 PyObject_Init[Var] is almost always called from the PyObject_NEW[_VAR] by Guido van Rossum · 22 years ago
  84. 6248f44 Speedup for PyObject_IsTrue(): check for True and False first. by Guido van Rossum · 22 years ago
  85. 81912d4 Speedup for PyObject_RichCompareBool(): PyObject_RichCompare() almost by Guido van Rossum · 22 years ago
  86. 056fbf4 Another modest speedup in PyObject_GenericGetAttr(): inline the call by Guido van Rossum · 22 years ago
  87. c66ff44 Inline call to _PyObject_GetDictPtr() in PyObject_GenericGetAttr(). by Guido van Rossum · 22 years ago
  88. 3f19b10 Replace abort with Py_FatalError. by Martin v. Löwis · 22 years ago
  89. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  90. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  91. 7c321a8 The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added by Tim Peters · 22 years ago
  92. c6a3ff6 SF bug 578752: COUNT_ALLOCS vs heap types by Tim Peters · 22 years ago
  93. 4be93d0 Rearranged and added comments to object.h, to clarify many things by Tim Peters · 22 years ago
  94. a6269a8 Removed 3 unlikely #includes that were only needed for the non-gc flavor by Tim Peters · 22 years ago
  95. 803526b Trashcan cleanup: Now that cyclic gc is always there, the trashcan by Tim Peters · 22 years ago
  96. 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
  97. 4178515 SF # 533070 Silence AIX C Compiler Warnings by Neal Norwitz · 22 years ago
  98. 51290d3 SF # 561244 Micro optimizations by Neal Norwitz · 22 years ago
  99. 3f8dae7 Fix typo by Neal Norwitz · 22 years ago
  100. a407300 Implement the intention of SF patch 472523 (but coded differently). by Guido van Rossum · 22 years ago