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