1. 31f4d1f Remove an unnecessary check for NULL. by Fred Drake · 23 years ago
  2. 73006d0 When weakref proxies are involved in binary & ternary slot operations, by Fred Drake · 23 years ago
  3. f76de62 Fix SF bug #472234: type(obj) calls type->tp_init (Roeland Rengelink) by Guido van Rossum · 23 years ago
  4. 6b47129 Fix error checking done by abstract_issubclass and abstract_isinstance. by Neil Schemenauer · 23 years ago
  5. 915f0eb Protect references to tp_descr_get and tp_dict with the appropriate test: by Guido van Rossum · 23 years ago
  6. 14a6f83 Remove a bunch of stuff that's no longer needed now that update_slot() by Guido van Rossum · 23 years ago
  7. caf5904 slot_sq_item(): ensure that self is an instance of the wrapper's by Guido van Rossum · 23 years ago
  8. c993315 SF bug [#468061] __str__ ignored in str subclass. by Tim Peters · 23 years ago
  9. b85a8b7 Refactored the update_slot() code a bit to be hopefully slightly more efficient: by Guido van Rossum · 23 years ago
  10. 687ae00 Get rid of __defined__ and tp_defined -- there's no need to by Guido van Rossum · 23 years ago
  11. 2f3ca6e Completely get rid of __dynamic__ and the corresponding by Guido van Rossum · 23 years ago
  12. 825d875 Add (void *) casts to solve some problems on HP-UX 11.0, as discussed by Guido van Rossum · 23 years ago
  13. d396b9c Redid the slot computation. The initial slot assignments are now done by Guido van Rossum · 23 years ago
  14. 2bae4fa Remove extra "]" in splitlines() docstring. Reported by Neal Norwitz. by Fred Drake · 23 years ago
  15. 79fd0fc Band-aid solution to SF bug #470634: readlines() on linux requires 2 ^D's. by Guido van Rossum · 23 years ago
  16. 5af588b Now that COPYBUF is a new local macro, add #undef COPYBUF. by Guido van Rossum · 23 years ago
  17. fc57ccb SF bug [#470040] ParseTuple t# vs subclasses. by Tim Peters · 23 years ago
  18. 875eeaa Another step in the right direction: when a new class's attribute by Guido van Rossum · 23 years ago
  19. 2771b5b Rather gross workaround for a bug in the mac GUSI I/O library: by Jack Jansen · 23 years ago
  20. fd38f8e The slot definition table entry for mp_getitem had a bogus wrapper by Guido van Rossum · 23 years ago
  21. 7b9144b Halfway checkin. This is still messy, but it's beginning to address by Guido van Rossum · 23 years ago
  22. 0eb2a6e It turned out not so difficult to support old-style numbers (those by Guido van Rossum · 23 years ago
  23. 4438338 type_subclasses(): debug build was broken due to typo in new assert(). by Tim Peters · 23 years ago
  24. 1c45073 Keep track of a type's subclasses (subtypes), in tp_subclasses, which by Guido van Rossum · 23 years ago
  25. 03290ec Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, by Guido van Rossum · 23 years ago
  26. f2a67da Guido suggests, and I agree, to insist that SIZEOF_VOID_P be a power of 2. by Tim Peters · 23 years ago
  27. 6d483d3 _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. by Tim Peters · 23 years ago
  28. 406fe3b Repaired the debug Windows deaths in test_descr, by allocating enough by Tim Peters · 23 years ago
  29. 7254e5a _PyObject_GetDictPtr(): by Tim Peters · 23 years ago
  30. b3f0d34 PyObject_ClearWeakRefs() is now a real function instead of a function pointer; by Fred Drake · 23 years ago
  31. 8844d52 The weak reference implementation, separated from the weakref module. by Fred Drake · 23 years ago
  32. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  33. 50fda3b Make new classes dynamic by default. by Guido van Rossum · 23 years ago
  34. 59f809d type_new(): cast PyObject_MALLOC's result to char*, for clarity. by Tim Peters · 23 years ago
  35. 2f93e28 SF bug [#467331] ClassType.__doc__ always None. by Tim Peters · 23 years ago
  36. 1e1de1c typeobject.c, slot_tp_gettattr_hook(): fix the speedup hack -- the by Guido van Rossum · 23 years ago
  37. f4593e0 *EXPERIMENTAL* speedup of slot_sq_item. This sped up the following by Guido van Rossum · 23 years ago
  38. da21c01 call_method(), call_maybe(): fix a performance bug: the argument by Guido van Rossum · 23 years ago
  39. c15c4f1 SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. by Tim Peters · 23 years ago
  40. 048eb75 Add Garbage Collection support to new-style classes (not yet to their by Guido van Rossum · 23 years ago
  41. 55f2099 Miscellaneous code fiddling: by Guido van Rossum · 23 years ago
  42. 89c4264 binary_op1(), ternary_op(): rearrange the code so that slotw is tested by Guido van Rossum · 23 years ago
  43. 2611162 slot_sq_length(): squash a leak. by Guido van Rossum · 23 years ago
  44. 25d1807 slot_tp_new(): newargs was leaking. by Guido van Rossum · 23 years ago
  45. d016e45 Fix typo found by doerwalter. by Guido van Rossum · 23 years ago
  46. 8b13b3e SF bug [#466173] unpack TypeError unclear by Tim Peters · 23 years ago
  47. d38b1c7 SF [#466125] PyLong_AsLongLong works for any integer. by Tim Peters · 23 years ago
  48. 84675ac The changes to ternary_op could cause a core dump. Fix this, and by Guido van Rossum · 23 years ago
  49. 4bb1e36 It's a fact: for binary operators, *under certain circumstances*, by Guido van Rossum · 23 years ago
  50. 9bea3ab Ouch. The wrapper for __rpow__ was the same as for __pow__, resulting by Guido van Rossum · 23 years ago
  51. 2ed6bf8 Merge branch changes (coercion, rich comparisons) into trunk. by Guido van Rossum · 23 years ago
  52. 874f15a add_operators(): the __floordiv__ and __truediv__ descriptors (and by Guido van Rossum · 23 years ago
  53. 3926a63 - Provisional support for pickling new-style objects. (*) by Guido van Rossum · 23 years ago
  54. a4cb788 Change repr() of a new-style class to say <class 'ClassName'> rather by Guido van Rossum · 23 years ago
  55. 5c294fb Make __class__ assignment possible, when the object structures are the by Guido van Rossum · 23 years ago
  56. 66c1a52 Make properties discoverable from Python: by Tim Peters · 23 years ago
  57. 3d45d8f Another comparison patch-up: comparing a type with a dynamic metatype by Guido van Rossum · 23 years ago
  58. 2205642 Do the same thing to complex that I did to str: the rich comparison by Guido van Rossum · 23 years ago
  59. bb77e68 Change string comparison so that it applies even when one (or both) by Guido van Rossum · 23 years ago
  60. ff0e6d6 Fix the baffler that Tim reported: sometimes the repr() of an object by Guido van Rossum · 23 years ago
  61. 2c9aa5e Generalize file.writelines() to allow iterable objects. by Tim Peters · 23 years ago
  62. 19c1cd5 Add the __getattr__ hook back. The rules are now: by Guido van Rossum · 23 years ago
  63. 867a8d2 Change the name of the __getattr__ special method for new-style by Guido van Rossum · 23 years ago
  64. ad9744a Fix a bug in rendering of \\ by repr() -- it rendered as \\\ instead of \\. by Guido van Rossum · 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. 3508e30 Fix Unicode .join() method to raise a TypeError for sequence by Marc-André Lemburg · 23 years ago
  68. dd4d1c4 _PyObject_GetDictPtr(): when the offset is negative, always align -- by Guido van Rossum · 23 years ago
  69. 6871f6a Implement the changes proposed in patch #413333. unicode(obj) now by Marc-André Lemburg · 23 years ago
  70. c60e6f7 Patch #435971: UTF-7 codec by Brian Quinlan. by Marc-André Lemburg · 23 years ago
  71. efc3a3a SF bug [#463093] File methods need doc strings. Now they don't. by Tim Peters · 23 years ago
  72. 2777c02 Patch #462849: Pass Unicode objects to file's .write method. by Martin v. Löwis · 23 years ago
  73. 1952e38 Add additional coercion support for "self subtypes" to int, long, by Guido van Rossum · 23 years ago
  74. 6380596 complex_coerce(): add explicit PyComplex_Check() test. Previously, by Guido van Rossum · 23 years ago
  75. ab3b034 Hopefully fix 3-way comparisons. This unfortunately adds yet another by Guido van Rossum · 23 years ago
  76. cf95f9c Properly repr classes without module names. by Martin v. Löwis · 23 years ago
  77. ceccae5 wrap_cmpfunc(): added a safety check for the __cmp__ wrapper. We can by Guido van Rossum · 23 years ago
  78. f0b35e1 Redo the PyMethod attributes using a dir()-friendly approach, creating by Guido van Rossum · 23 years ago
  79. 26f68f5 type_new(): Didn't compile anymore, due to change in struct memberlist by Tim Peters · 23 years ago
  80. d9d1d4a Rewrite function attributes to use the generic routines properly. by Guido van Rossum · 23 years ago
  81. 305b585 PyObject_Dir(): Merge in __members__ and __methods__ too (if they exist, by Tim Peters · 23 years ago
  82. bc7e863 merge_class_dict(): Clear the error if __bases__ doesn't exist. by Tim Peters · 23 years ago
  83. 7e35d57 A fix for SF bug #461546 (bug in long_mul). by Guido van Rossum · 23 years ago
  84. a8c60f4 tp_new_wrapper(): A subtle change in the check for safe use. by Guido van Rossum · 23 years ago
  85. f21c6be Add call_maybe(): a variant of call_method() that returns by Guido van Rossum · 23 years ago
  86. 717ce00 call_method(): by Guido van Rossum · 23 years ago
  87. 5560b74 PyObject_CallObject(): this may as well call PyEval_CallObject() by Guido van Rossum · 23 years ago
  88. 5f5512d _PyObject_Dump(): print the type of the object. This is by far the by Guido van Rossum · 23 years ago
  89. 4441001 The end of [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  90. 0ab085c Changed the dict implementation to take "string shortcuts" only when by Tim Peters · 23 years ago
  91. 742dfd6 Get rid of builtin_open() entirely (the C code and docstring, not the by Tim Peters · 23 years ago
  92. 8fa4567 Now that file objects are subclassable, you can get at the file constructor by Tim Peters · 23 years ago
  93. 3f996e7 type_call(): Change in policy. The keyword args (if any) are now passed by Tim Peters · 23 years ago
  94. bafedec based upon a suggestion in c.l.py, this slight expansion of the by Skip Montanaro · 23 years ago
  95. 59c9a64 SF bug [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  96. 2400fa4 Again perhaps the end of [#460020] bug or feature: unicode() and subclasses. by Tim Peters · 23 years ago
  97. 111f609 If interning an instance of a string subclass, intern a real string object by Tim Peters · 23 years ago
  98. af90b3e str_subtype_new, unicode_subtype_new: by Tim Peters · 23 years ago
  99. 7a29bd5 More on bug 460020: disable many optimizations of unicode subclasses. by Tim Peters · 23 years ago
  100. 8fa5dd0 More bug 460020: lots of string optimizations inhibited for string by Tim Peters · 23 years ago