1. afe7a94 When overriding __str__ or __repr__, set the tp_print slot to NULL. by Guido van Rossum · 23 years ago
  2. b0c079e PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs() by Fred Drake · 23 years ago
  3. 3abca12 SF bug #475327: type() produces incorrect error msg by Tim Peters · 23 years ago
  4. 4d85953 dictionary() constructor: by Tim Peters · 23 years ago
  5. b92cf06 PyObject_CallFunction(), PyObject_CallMethod(): Make sure we do not touch by Fred Drake · 23 years ago
  6. c916f5a Be smarter about clearing the weakref lists for instances, instance methods, by Fred Drake · 23 years ago
  7. b421b8c Added two new functions to conveniently call functions/methods from C. by Fred Drake · 23 years ago
  8. 1fc240e Generalize dictionary() to accept a sequence of 2-sequences. At the by Tim Peters · 23 years ago
  9. 6661be3 Allow assignment to newinstance.__dict__. by Guido van Rossum · 23 years ago
  10. 70e3688 complex_subtype_from_string(): move the declaration of s_buffer[] out by Guido van Rossum · 23 years ago
  11. e2ae77b SF patch #474590 -- RISC OS support by Guido van Rossum · 23 years ago
  12. 00ebd46 SF patch #474175 (Jay T Miller): file.readinto arg parsing bug by Guido van Rossum · 23 years ago
  13. 996fad3 Referencable is not a word, so don't use it in an error message <wink>. by Jeremy Hylton · 23 years ago
  14. 39a362d cleanup indentation by Jeremy Hylton · 23 years ago
  15. 5c66a26 Make the error message for unsupported operand types cleaner, in by Guido van Rossum · 23 years ago
  16. 56ff387 Fix for SF bug #472940: can't getattr() attribute shown by dir() by Guido van Rossum · 23 years ago
  17. c8e5645 Methods of built-in types now properly check for keyword arguments by Guido van Rossum · 23 years ago
  18. f23473f Add missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
  19. 2677512 Adding missing "static" declarations (found by "make smelly"). by Neil Schemenauer · 23 years ago
  20. 6d20407 Big internal change that should have no external effects: unify the by Guido van Rossum · 23 years ago
  21. fdc1bd3 Fix for Bug #216405: by Thomas Heller · 23 years ago
  22. b5507ec Additional test and documentation for the unicode() changes. by Marc-André Lemburg · 23 years ago
  23. b8c65bc SF patch #470578: Fixes to synchronize unicode() and str() by Guido van Rossum · 23 years ago
  24. e82f75a Missing file structseq.c for SF patch #462296 by Guido van Rossum · 23 years ago
  25. 31f4d1f Remove an unnecessary check for NULL. by Fred Drake · 23 years ago
  26. 73006d0 When weakref proxies are involved in binary & ternary slot operations, by Fred Drake · 23 years ago
  27. f76de62 Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink) by Guido van Rossum · 23 years ago
  28. 6b47129 Fix error checking done by abstract_issubclass and abstract_isinstance. by Neil Schemenauer · 23 years ago
  29. 915f0eb Protect references to tp_descr_get and tp_dict with the appropriate test: by Guido van Rossum · 23 years ago
  30. 14a6f83 Remove a bunch of stuff that's no longer needed now that update_slot() by Guido van Rossum · 23 years ago
  31. caf5904 slot_sq_item(): ensure that self is an instance of the wrapper's by Guido van Rossum · 23 years ago
  32. c993315 SF bug [#468061] __str__ ignored in str subclass. by Tim Peters · 23 years ago
  33. b85a8b7 Refactored the update_slot() code a bit to be hopefully slightly more efficient: by Guido van Rossum · 23 years ago
  34. 687ae00 Get rid of __defined__ and tp_defined -- there's no need to by Guido van Rossum · 23 years ago
  35. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 23 years ago
  36. 825d875 Add (void *) casts to solve some problems on HP-UX 11.0, as discussed by Guido van Rossum · 23 years ago
  37. d396b9c Redid the slot computation. The initial slot assignments are now done by Guido van Rossum · 23 years ago
  38. 2bae4fa Remove extra "]" in splitlines() docstring. Reported by Neal Norwitz. by Fred Drake · 23 years ago
  39. 79fd0fc Band-aid solution to SF bug #470634: readlines() on linux requires 2 ^D's. by Guido van Rossum · 23 years ago
  40. 5af588b Now that COPYBUF is a new local macro, add #undef COPYBUF. by Guido van Rossum · 23 years ago
  41. fc57ccb SF bug [#470040] ParseTuple t# vs subclasses. by Tim Peters · 23 years ago
  42. 875eeaa Another step in the right direction: when a new class's attribute by Guido van Rossum · 23 years ago
  43. 2771b5b Rather gross workaround for a bug in the mac GUSI I/O library: by Jack Jansen · 23 years ago
  44. fd38f8e The slot definition table entry for mp_getitem had a bogus wrapper by Guido van Rossum · 23 years ago
  45. 7b9144b Halfway checkin. This is still messy, but it's beginning to address by Guido van Rossum · 23 years ago
  46. 0eb2a6e It turned out not so difficult to support old-style numbers (those by Guido van Rossum · 23 years ago
  47. 4438338 type_subclasses(): debug build was broken due to typo in new assert(). by Tim Peters · 23 years ago
  48. 1c45073 Keep track of a type's subclasses (subtypes), in tp_subclasses, which by Guido van Rossum · 23 years ago
  49. 03290ec Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, by Guido van Rossum · 23 years ago
  50. f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 23 years ago
  51. 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 23 years ago
  52. 406fe3b Repaired the debug Windows deaths in test_descr, by allocating enough by Tim Peters · 23 years ago
  53. 7254e5a _PyObject_GetDictPtr(): by Tim Peters · 23 years ago
  54. b3f0d34 PyObject_ClearWeakRefs() is now a real function instead of a function pointer; by Fred Drake · 23 years ago
  55. 8844d52 The weak reference implementation, separated from the weakref module. by Fred Drake · 23 years ago
  56. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  57. 50fda3b Make new classes dynamic by default. by Guido van Rossum · 23 years ago
  58. 59f809d type_new(): cast PyObject_MALLOC's result to char*, for clarity. by Tim Peters · 23 years ago
  59. 2f93e28 SF bug [#467331] ClassType.__doc__ always None. by Tim Peters · 23 years ago
  60. 1e1de1c typeobject.c, slot_tp_gettattr_hook(): fix the speedup hack -- the by Guido van Rossum · 23 years ago
  61. f4593e0 *EXPERIMENTAL* speedup of slot_sq_item. This sped up the following by Guido van Rossum · 23 years ago
  62. da21c01 call_method(), call_maybe(): fix a performance bug: the argument by Guido van Rossum · 23 years ago
  63. c15c4f1 SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. by Tim Peters · 23 years ago
  64. 048eb75 Add Garbage Collection support to new-style classes (not yet to their by Guido van Rossum · 23 years ago
  65. 55f2099 Miscellaneous code fiddling: by Guido van Rossum · 23 years ago
  66. 89c4264 binary_op1(), ternary_op(): rearrange the code so that slotw is tested by Guido van Rossum · 23 years ago
  67. 2611162 slot_sq_length(): squash a leak. by Guido van Rossum · 23 years ago
  68. 25d1807 slot_tp_new(): newargs was leaking. by Guido van Rossum · 23 years ago
  69. d016e45 Fix typo found by doerwalter. by Guido van Rossum · 23 years ago
  70. 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
  71. d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 23 years ago
  72. 84675ac The changes to ternary_op could cause a core dump. Fix this, and by Guido van Rossum · 23 years ago
  73. 4bb1e36 It's a fact: for binary operators, *under certain circumstances*, by Guido van Rossum · 23 years ago
  74. 9bea3ab Ouch. The wrapper for __rpow__ was the same as for __pow__, resulting by Guido van Rossum · 23 years ago
  75. 2ed6bf8 Merge branch changes (coercion, rich comparisons) into trunk. by Guido van Rossum · 23 years ago
  76. 874f15a add_operators(): the __floordiv__ and __truediv__ descriptors (and by Guido van Rossum · 23 years ago
  77. 3926a63 - Provisional support for pickling new-style objects. (*) by Guido van Rossum · 23 years ago
  78. a4cb788 Change repr() of a new-style class to say <class 'ClassName'> rather by Guido van Rossum · 23 years ago
  79. 5c294fb Make __class__ assignment possible, when the object structures are the by Guido van Rossum · 23 years ago
  80. 66c1a52 Make properties discoverable from Python: by Tim Peters · 23 years ago
  81. 3d45d8f Another comparison patch-up: comparing a type with a dynamic metatype by Guido van Rossum · 23 years ago
  82. 2205642 Do the same thing to complex that I did to str: the rich comparison by Guido van Rossum · 23 years ago
  83. bb77e68 Change string comparison so that it applies even when one (or both) by Guido van Rossum · 23 years ago
  84. ff0e6d6 Fix the baffler that Tim reported: sometimes the repr() of an object by Guido van Rossum · 23 years ago
  85. 2c9aa5e Generalize file.writelines() to allow iterable objects. by Tim Peters · 23 years ago
  86. 19c1cd5 Add the __getattr__ hook back. The rules are now: by Guido van Rossum · 23 years ago
  87. 867a8d2 Change the name of the __getattr__ special method for new-style by Guido van Rossum · 23 years ago
  88. ad9744a Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead of \\. by Guido van Rossum · 23 years ago
  89. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  90. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  91. 3508e30 Fix Unicode .join() method to raise a TypeError for sequence by Marc-André Lemburg · 23 years ago
  92. dd4d1c4 _PyObject_GetDictPtr(): when the offset is negative, always align -- by Guido van Rossum · 23 years ago
  93. 6871f6a Implement the changes proposed in patch #413333. unicode(obj) now by Marc-André Lemburg · 23 years ago
  94. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  95. efc3a3a SF bug [#463093] File methods need doc strings. Now they don't. by Tim Peters · 23 years ago
  96. 2777c02 Patch #462849: Pass Unicode objects to file's .write method. by Martin v. Löwis · 23 years ago
  97. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  98. 6380596 complex_coerce(): add explicit PyComplex_Check() test. Previously, by Guido van Rossum · 23 years ago
  99. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  100. cf95f9c Properly repr classes without module names. by Martin v. Löwis · 23 years ago