1. 9577761 Repair apparent cut'n'pasteo in tuple() docstring. by Tim Peters · 23 years ago
  2. 393661d Add warning mode for classic division, almost exactly as specified in by Guido van Rossum · 23 years ago
  3. 29d55a3 Fix a memory leak in str_subtype_new(). (All the other by Guido van Rossum · 23 years ago
  4. 41eb14d Give 'super' a decent repr(), and readonly attributes to access the by Guido van Rossum · 23 years ago
  5. 21922aa PyObject_Repr(): add missing ">" back at end of format string: "<%s by Guido van Rossum · 23 years ago
  6. 017cb2c Squash new compiler wng. by Tim Peters · 23 years ago
  7. 6fb3fde Pytype_GenericAlloc(): round up size so we zap all four bytes of the by Guido van Rossum · 23 years ago
  8. 4b8c0f6 More stuff discovered while writing the simplest of testcases: by Guido van Rossum · 23 years ago
  9. 13228a6 Ah, the joy of writing test cases... by Guido van Rossum · 23 years ago
  10. 38b88c2 Removed some unreachable break statements to silence SGI compiler. by Sjoerd Mullender · 23 years ago
  11. 52e0717 Give the internal immutable list type .extend and .pop methods (they by Tim Peters · 23 years ago
  12. c414187 Safety measures now that str and tuple are subclassable: by Guido van Rossum · 23 years ago
  13. 31bcff8 Make 'super' subclassable. (Not sure how useful this is yet. :-) by Guido van Rossum · 23 years ago
  14. e023fe0 Make unicode subclassable. by Guido van Rossum · 23 years ago
  15. ae960af Make str and tuple types subclassable. by Guido van Rossum · 23 years ago
  16. 147b13c Make getset subclassable. by Guido van Rossum · 23 years ago
  17. d93dce1 Fix typo: double semicolons. by Guido van Rossum · 23 years ago
  18. deb77e8 Squash new compiler wng in debug build. by Tim Peters · 23 years ago
  19. c806c88 Use new GC API. Remove usage of BASICSIZE macros. by Neil Schemenauer · 23 years ago
  20. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  21. fd34369 Remove GC related code. It lives in gcmodule now. by Neil Schemenauer · 23 years ago
  22. 4f4817f Make frames a PyVarObject. Use new GC API. by Neil Schemenauer · 23 years ago
  23. bef1417 Make int, long and float subclassable. by Guido van Rossum · 23 years ago
  24. e705ef1 Fix super() so that it is usable for static methods (like __new__) as well. by Guido van Rossum · 23 years ago
  25. 5592e4d Fix a typo in SLOT0 macro for the declaration of cache_str. by Guido van Rossum · 23 years ago
  26. 2730b13 Finish the previous checkin: also avoid getattr when calling the method by Guido van Rossum · 23 years ago
  27. 6071873 Change in policy: when a slot_tp_xxx function looks for the __xxx__ method, by Guido van Rossum · 23 years ago
  28. 7c47beb Two improvements suggested by Greg Stein: by Barry Warsaw · 23 years ago
  29. 6af5bbb PyString_FromFormatV: Massage platform %p output to match what gcc does, by Tim Peters · 23 years ago
  30. 239abf7 getset_init(): the function name in the PyArg_ParseTuple() format by Guido van Rossum · 23 years ago
  31. a15dece Improve the error message issued when an unbound method is called with by Guido van Rossum · 23 years ago
  32. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  33. dadace0 PyString_FromFormat() and PyString_FromFormatV(): Largely ripped from by Barry Warsaw · 23 years ago
  34. 705f0f5 Add 'super', another new object type with magical properties. by Guido van Rossum · 23 years ago
  35. 271410a Change the getset type to take an optional third function argument: by Guido van Rossum · 23 years ago
  36. 845fc48 getset_descr_set(): guard against deletion (indicated by a set call by Guido van Rossum · 23 years ago
  37. 2c25239 slot_tp_descr_get(): guard against NULL obj or type (bug reported by by Guido van Rossum · 23 years ago
  38. 91c0d8a getset_init(): make the arguments optional. by Guido van Rossum · 23 years ago
  39. 96685bf float_pow: Put *all* of the burden on the libm pow in normal by Tim Peters · 23 years ago
  40. 29a62dd Add new built-in type 'getset' (PyGetSet_Type). by Guido van Rossum · 23 years ago
  41. 0b13116 err_ovf(): only raise OverflowError when OverflowWarning was raised. by Guido van Rossum · 23 years ago
  42. 31960db int_pow(): Repair typo when passing on to float pow (the 2nd argument was by Tim Peters · 23 years ago
  43. e27f795 Change all case where we used to raise OverflowError to issue a by Guido van Rossum · 23 years ago
  44. 60f0188 Merge changes from r22a2-branch back into trunk. Also, change patch by Barry Warsaw · 23 years ago
  45. 5d815f3 Address SF bug #442813. The sequence getitem wrappers should do by Guido van Rossum · 23 years ago
  46. 9676b22 Weak reference support, closing SF bug #451773. by Guido van Rossum · 23 years ago
  47. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  48. 1a49350 type_new(): look for __dynamic__ at the module level (after looking in by Guido van Rossum · 23 years ago
  49. 4066769 Fix core dump in repr() of instancemethod whose class==NULL. by Guido van Rossum · 23 years ago
  50. f23c41d instance_getattr2(): rewritten to remove unnecessary stuff and by Guido van Rossum · 23 years ago
  51. cdf0d75 Instance methods: allow a NULL value for im_class. by Guido van Rossum · 23 years ago
  52. 8d32c8b type_new(): only defer to the winning metatype if it's different from by Guido van Rossum · 23 years ago
  53. 501c7c7 classobject.c:instancemethod_descr_get(): when a bound method is by Guido van Rossum · 23 years ago
  54. 2907fe6 module_repr(): Instead of fixing the maximum buf size to 400, by Barry Warsaw · 23 years ago
  55. 76e6963 Fix object_repr() to include the module (using the same rules as by Guido van Rossum · 23 years ago
  56. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  57. c354221 Fix SF bug #442501: calculate __module__ properly. by Guido van Rossum · 23 years ago
  58. 8098ddb Subtle change to make None.__class__ work: by Guido van Rossum · 23 years ago
  59. ba21a49 Add a function _Py_ReadyTypes() which initializes various and sundry by Guido van Rossum · 23 years ago
  60. 82fc51c1 Update to MvL's patch #424475 to avoid returning 2 when tp_compare by Guido van Rossum · 23 years ago
  61. b8f6366 - Another big step in the right direction. All the overridable by Guido van Rossum · 23 years ago
  62. 23cc2b4 PyMethod_Type: add a tp_descr_get slot function to ensure proper by Guido van Rossum · 23 years ago
  63. 4dd64ab Non-function fields, like tp_dictoffset and tp_weaklistoffset, should by Guido van Rossum · 23 years ago
  64. 142865c func_getattro(), func_setattro(): Implement the new semantics for by Barry Warsaw · 23 years ago
  65. 910d7d4 Remove much dead code from ceval.c by Jeremy Hylton · 23 years ago
  66. 8e24818 Make dynamic types work as intended. Or at least more so. by Guido van Rossum · 23 years ago
  67. 8de8680 Temporary stop-gap fix for dynamic classes, so they pass the test. by Guido van Rossum · 23 years ago
  68. 13d52f0 - Big changes to fix SF bug #442833 (a nasty multiple inheritance by Guido van Rossum · 23 years ago
  69. 05ac6de Add PyDict_Merge(a, b, override): by Guido van Rossum · 23 years ago
  70. d614f97 Change PyType_Ready() to use the READY and READYING flags. This makes by Guido van Rossum · 23 years ago
  71. 772747b SF patch #438013 Remove 2-byte Py_UCS2 assumptions by Tim Peters · 23 years ago
  72. 29687cd Sigh. Strengthen the resriction of the previous checkin: tp_new is by Guido van Rossum · 23 years ago
  73. c11e192 Thinking back to the 2.22 revision, I didn't like what I did there one by Guido van Rossum · 23 years ago
  74. 29206bc Apply anonymous SF patch #441229. by Guido van Rossum · 23 years ago
  75. dc91b99 Proper support for binary operators, including true division and floor by Guido van Rossum · 23 years ago
  76. 8e938b4 Removed extraneous semicolons that caused a gazzilion "empty declaration" warnings in the MetroWerks compiler. by Jack Jansen · 23 years ago
  77. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  78. 528b7eb - Rename PyType_InitDict() to PyType_Ready(). by Guido van Rossum · 23 years ago
  79. f040ede Cosmetics: by Guido van Rossum · 23 years ago
  80. 63e0a64 Remove spurious "closed" attribute definition from the memberlist by Guido van Rossum · 23 years ago
  81. 0d231ed A totally new way to do the __new__ wrapper. This should address the by Guido van Rossum · 23 years ago
  82. 2b8d7bd Fix SF #442791 (revisited): No __delitem__ wrapper was defined. by Guido van Rossum · 23 years ago
  83. 5962cbf Fix the test_weakref.py failure. Introduced by resolving "a conflict" by Tim Peters · 23 years ago
  84. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  85. 3ce4538 Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h. by Jeremy Hylton · 23 years ago
  86. 7321ec4 SF bug #444510: int() should guarantee truncation. by Tim Peters · 23 years ago
  87. 80d1dd5 Fix for bug #444493: u'\U00010001' segfaults with current CVS on wide builds. by Marc-André Lemburg · 23 years ago
  88. 6c6bfb7 Make the unicode-escape and the UTF-16 codecs handle surrogates by Marc-André Lemburg · 23 years ago
  89. 0d42e0c #ifdef out generation of \U escapes unless Py_UNICODE_WIDE. This by Guido van Rossum · 23 years ago
  90. 1bc8fab Kill more warnings from the SGI compiler. Part of SF patch #434992. by Fred Drake · 23 years ago
  91. 0d5dd68 Python.h: Don't attempt to redefine NDEBUG if it's already defined. by Tim Peters · 23 years ago
  92. 586b2e3 long_format: Simplify the overly elaborate base-is-a-power-of-2 code. by Tim Peters · 23 years ago
  93. 3c29602 _Py_GetObjects(): GCC suggests to add () around && within || for some by Guido van Rossum · 23 years ago
  94. 212e614 divrem1 & long_format: found a clean way to factor divrem1 so that by Tim Peters · 23 years ago
  95. c8a6b9b long_format(): Simplify new code a bit. by Tim Peters · 23 years ago
  96. fad225f long_format(): Easy speedup for output bases that aren't a power of 2 (in by Tim Peters · 23 years ago
  97. 10c6692 GC for method objects. by Neil Schemenauer · 23 years ago
  98. 7eac9b7 GC for iterator objects. by Neil Schemenauer · 23 years ago
  99. 19cd292 GC for frame objects. by Neil Schemenauer · 23 years ago
  100. 0ec9aba On long to the negative long power, let float handle it instead of by Guido van Rossum · 23 years ago