1. 712ee92 generate py3k warnings on __getslice__, __delslice__, and __setslice__ by Benjamin Peterson · 16 years ago
  2. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  3. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  4. b1d3d96 Issue 2332: add new attribute names for instance method objects by Neal Norwitz · 17 years ago
  5. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 17 years ago
  6. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
  7. 6075a82 Limit free list of method and builtin function objects to 256 entries each. by Christian Heimes · 17 years ago
  8. a26cf9b Make int() and long() fall back to __trunc__(). See issue 2002. by Jeffrey Yasskin · 17 years ago
  9. 9ff1a44 Fix an edge case whereby the __del__() method of a classic class could by Guido van Rossum · 17 years ago
  10. abe1d48 As per Armin Rigo's suggestion, remove special handing from intobject.c to deal with the peculiarities of classobject's implementation of the number protocol. The nb_long method of classobject now falls back to nb_int if there is no __long__ attribute present. by Kristján Valur Jónsson · 17 years ago
  11. 3a62404 Correctly forward exception in instance_contains(). by Martin v. Löwis · 18 years ago
  12. 5d59c09 Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 18 years ago
  13. 6cbb726 Move initialization of interned strings to before allocating the by Neal Norwitz · 18 years ago
  14. af33f2d Can't return NULL from a void function. If there is a memory error, by Neal Norwitz · 18 years ago
  15. b09f4f5 Handle a whole lot of failures from PyString_FromInternedString(). by Neal Norwitz · 18 years ago
  16. 1872b1c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots by Neal Norwitz · 18 years ago
  17. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  18. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 18 years ago
  19. ea3912b If a classic class defined a __coerce__() method that just returned its two by Brett Cannon · 18 years ago
  20. fd01d79 (arre, arigo) SF bug #1350060 by Armin Rigo · 18 years ago
  21. 2cfaa34 Correct some value converting strangenesses. by Georg Brandl · 18 years ago
  22. e4e023c Simplify calling. by Georg Brandl · 18 years ago
  23. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  24. 6685128 Fix more ssize_t issues. by Martin v. Löwis · 18 years ago
  25. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
  26. 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 19 years ago
  27. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 19 years ago
  28. badc086 Stop duplicating code and handle slice indices consistently and correctly by Neal Norwitz · 19 years ago
  29. 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 19 years ago
  30. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  31. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  32. dde99d2 Remove size constraints in SLICE opcodes. by Martin v. Löwis · 19 years ago
  33. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  34. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  35. 630db60 - On 64-bit platforms, when __len__() returns a value that cannot be by Guido van Rossum · 19 years ago
  36. ba3e6ec A minor fix for 64-bit platforms: when __len__() returns Python int by Guido van Rossum · 19 years ago
  37. bff60ae Insert missing flag. by Raymond Hettinger · 19 years ago
  38. e2749cb Fix for rather inaccurately titled bug by Michael W. Hudson · 20 years ago
  39. f4aca75 A static swapped_op[] array was defined in 3 different C files, & I think by Tim Peters · 20 years ago
  40. 3f3b668 Repair the same thinko in two places about handling of _Py_RefTotal in by Michael W. Hudson · 20 years ago
  41. baf0f8f - When method objects have an attribute that can be satisfied either by Guido van Rossum · 21 years ago
  42. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
  43. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  44. a9e14b7 Fix leak in classobject.c. The leak surfaced on the error exit when by Raymond Hettinger · 21 years ago
  45. 2fb9fdc Make it possible to call instancemethod() with 2 arguments. by Guido van Rossum · 22 years ago
  46. df875b9 New private API function _PyInstance_Lookup. gc will use this to figure by Tim Peters · 22 years ago
  47. 6bae46d Refactor instancemethod_descr_get() to (a) be more clear, (b) be safe by Guido van Rossum · 22 years ago
  48. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  49. 7e5c6a0 Change issubclass() so that recursive tuples (directly or indirectly by Walter Dörwald · 22 years ago
  50. d9a6ad3 Enhance issubclass() and PyObject_IsSubclass() so that a tuple is by Walter Dörwald · 22 years ago
  51. f740bdf Since properties are supported here, is possible that by Guido van Rossum · 22 years ago
  52. 617080b Fix (real! :-) memory leaks in half_cmp and half_binop. by Guido van Rossum · 22 years ago
  53. 75585d4 getinstclassname(): Squash new compiler wng in assert (comparison of by Tim Peters · 22 years ago
  54. 45ec02a SF patch 576101, by Oren Tirosh: alternative implementation of by Guido van Rossum · 22 years ago
  55. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  56. 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
  57. b1e8154 About the new but unreferenced new_class, Guido sez: by Michael W. Hudson · 22 years ago
  58. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  59. e7b8ecf Major cleanup operation: whenever there's a call that looks for an by Guido van Rossum · 22 years ago
  60. 16b93b3 Fix for SF bug 532646. This is a little simpler than what Neal by Guido van Rossum · 22 years ago
  61. c916f5a Be smarter about clearing the weakref lists for instances, instance methods, by Fred Drake · 23 years ago
  62. 56ff387 Fix for SF bug #472940: can't getattr() attribute shown by dir() by Guido van Rossum · 23 years ago
  63. 915f0eb Protect references to tp_descr_get and tp_dict with the appropriate test: by Guido van Rossum · 23 years ago
  64. 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
  65. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  66. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  67. cf95f9c Properly repr classes without module names. by Martin v. Löwis · 23 years ago
  68. f0b35e1 Redo the PyMethod attributes using a dir()-friendly approach, creating by Guido van Rossum · 23 years ago
  69. 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 23 years ago
  70. 28d80b1 PyClass_New(): put the extended Don Beaudry hook back in. When one of by Guido van Rossum · 23 years ago
  71. b479dc5 Add PyMethod_Function(), PyMethod_Self(), PyMethod_Class() back. by Guido van Rossum · 23 years ago
  72. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  73. a15dece Improve the error message issued when an unbound method is called with by Guido van Rossum · 23 years ago
  74. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  75. 4066769 Fix core dump in repr() of instancemethod whose class==NULL. by Guido van Rossum · 23 years ago
  76. f23c41d instance_getattr2(): rewritten to remove unnecessary stuff and by Guido van Rossum · 23 years ago
  77. cdf0d75 Instance methods: allow a NULL value for im_class. by Guido van Rossum · 23 years ago
  78. 501c7c7 classobject.c:instancemethod_descr_get(): when a bound method is by Guido van Rossum · 23 years ago
  79. 23cc2b4 PyMethod_Type: add a tp_descr_get slot function to ensure proper by Guido van Rossum · 23 years ago
  80. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  81. 5962cbf Fix the test_weakref.py failure. Introduced by resolving "a conflict" by Tim Peters · 23 years ago
  82. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  83. 0ba9e3a init_name_op(): add (void) to the argument list to make it a valid by Guido van Rossum · 23 years ago
  84. 1b0feb4 Variant of SF patch 423181 by Jeremy Hylton · 23 years ago
  85. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  86. 4dcb85b Since Py_TPFLAGS_HAVE_WEAKREFS is set in Py_TPFLAGS_DEFAULT, it does not by Fred Drake · 23 years ago
  87. 82c690f Well darnit! The innocuous fix I made to PyObject_Print() caused by Guido van Rossum · 23 years ago
  88. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  89. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 24 years ago
  90. db81e8d Add support for weak references to the function and method types. by Fred Drake · 24 years ago
  91. 4e262a9 A small change to the C API for weakly-referencable types: Such types by Fred Drake · 24 years ago
  92. b60654b The return value from PyObject_ClearWeakRefs() is no longer meaningful, by Fred Drake · 24 years ago
  93. 4f9b13b instancemethod_setattro(): Raise TypeError if an attempt is made to by Barry Warsaw · 24 years ago
  94. 41deb1e PEP 205, Weak References -- initial checkin. by Fred Drake · 24 years ago
  95. 3202c6f Rename dubiously named local variable 'cmpfunc' -- this is also a by Guido van Rossum · 24 years ago
  96. 09ac89a fix indentation glitch by Jeremy Hylton · 24 years ago
  97. 5cc2c8c Re-factored PyInstance_New() into PyInstance_New() and PyInstance_NewRaw(). by Fred Drake · 24 years ago
  98. 65e8bd7 Rich comparisons fallout: instance_hash() should check for both by Guido van Rossum · 24 years ago
  99. 24f67d5 Fix a leak in instance_coerce(). This was introduced by Neil's by Guido van Rossum · 24 years ago
  100. 8998b4f Rich comparisons. by Guido van Rossum · 24 years ago