1. 5d815f3 Address SF bug #442813. The sequence getitem wrappers should do by Guido van Rossum · 23 years ago
  2. 9676b22 Weak reference support, closing SF bug #451773. by Guido van Rossum · 23 years ago
  3. 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 23 years ago
  4. 1a49350 type_new(): look for __dynamic__ at the module level (after looking in by Guido van Rossum · 23 years ago
  5. 4066769 Fix core dump in repr() of instancemethod whose class==NULL. by Guido van Rossum · 23 years ago
  6. f23c41d instance_getattr2(): rewritten to remove unnecessary stuff and by Guido van Rossum · 23 years ago
  7. cdf0d75 Instance methods: allow a NULL value for im_class. by Guido van Rossum · 23 years ago
  8. 8d32c8b type_new(): only defer to the winning metatype if it's different from by Guido van Rossum · 23 years ago
  9. 501c7c7 classobject.c:instancemethod_descr_get(): when a bound method is by Guido van Rossum · 23 years ago
  10. 2907fe6 module_repr(): Instead of fixing the maximum buf size to 400, by Barry Warsaw · 23 years ago
  11. 76e6963 Fix object_repr() to include the module (using the same rules as by Guido van Rossum · 23 years ago
  12. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  13. c354221 Fix SF bug #442501: calculate __module__ properly. by Guido van Rossum · 23 years ago
  14. 8098ddb Subtle change to make None.__class__ work: by Guido van Rossum · 23 years ago
  15. ba21a49 Add a function _Py_ReadyTypes() which initializes various and sundry by Guido van Rossum · 23 years ago
  16. 82fc51c1 Update to MvL's patch #424475 to avoid returning 2 when tp_compare by Guido van Rossum · 23 years ago
  17. b8f6366 - Another big step in the right direction. All the overridable by Guido van Rossum · 23 years ago
  18. 23cc2b4 PyMethod_Type: add a tp_descr_get slot function to ensure proper by Guido van Rossum · 23 years ago
  19. 4dd64ab Non-function fields, like tp_dictoffset and tp_weaklistoffset, should by Guido van Rossum · 23 years ago
  20. 142865c func_getattro(), func_setattro(): Implement the new semantics for by Barry Warsaw · 23 years ago
  21. 910d7d4 Remove much dead code from ceval.c by Jeremy Hylton · 23 years ago
  22. 8e24818 Make dynamic types work as intended. Or at least more so. by Guido van Rossum · 23 years ago
  23. 8de8680 Temporary stop-gap fix for dynamic classes, so they pass the test. by Guido van Rossum · 23 years ago
  24. 13d52f0 - Big changes to fix SF bug #442833 (a nasty multiple inheritance by Guido van Rossum · 23 years ago
  25. 05ac6de Add PyDict_Merge(a, b, override): by Guido van Rossum · 23 years ago
  26. d614f97 Change PyType_Ready() to use the READY and READYING flags. This makes by Guido van Rossum · 23 years ago
  27. 772747b SF patch #438013 Remove 2-byte Py_UCS2 assumptions by Tim Peters · 23 years ago
  28. 29687cd Sigh. Strengthen the resriction of the previous checkin: tp_new is by Guido van Rossum · 23 years ago
  29. c11e192 Thinking back to the 2.22 revision, I didn't like what I did there one by Guido van Rossum · 23 years ago
  30. 29206bc Apply anonymous SF patch #441229. by Guido van Rossum · 23 years ago
  31. dc91b99 Proper support for binary operators, including true division and floor by Guido van Rossum · 23 years ago
  32. 8e938b4 Removed extraneous semicolons that caused a gazzilion "empty declaration" warnings in the MetroWerks compiler. by Jack Jansen · 23 years ago
  33. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  34. 528b7eb - Rename PyType_InitDict() to PyType_Ready(). by Guido van Rossum · 23 years ago
  35. f040ede Cosmetics: by Guido van Rossum · 23 years ago
  36. 63e0a64 Remove spurious "closed" attribute definition from the memberlist by Guido van Rossum · 23 years ago
  37. 0d231ed A totally new way to do the __new__ wrapper. This should address the by Guido van Rossum · 23 years ago
  38. 2b8d7bd Fix SF #442791 (revisited): No __delitem__ wrapper was defined. by Guido van Rossum · 23 years ago
  39. 5962cbf Fix the test_weakref.py failure. Introduced by resolving "a conflict" by Tim Peters · 23 years ago
  40. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  41. 3ce4538 Add _PyUnicode_AsDefaultEncodedString to unicodeobject.h. by Jeremy Hylton · 23 years ago
  42. 7321ec4 SF bug #444510: int() should guarantee truncation. by Tim Peters · 23 years ago
  43. 80d1dd5 Fix for bug #444493: u'\U00010001' segfaults with current CVS on wide builds. by Marc-André Lemburg · 23 years ago
  44. 6c6bfb7 Make the unicode-escape and the UTF-16 codecs handle surrogates by Marc-André Lemburg · 23 years ago
  45. 0d42e0c #ifdef out generation of \U escapes unless Py_UNICODE_WIDE. This by Guido van Rossum · 23 years ago
  46. 1bc8fab Kill more warnings from the SGI compiler. Part of SF patch #434992. by Fred Drake · 23 years ago
  47. 0d5dd68 Python.h: Don't attempt to redefine NDEBUG if it's already defined. by Tim Peters · 23 years ago
  48. 586b2e3 long_format: Simplify the overly elaborate base-is-a-power-of-2 code. by Tim Peters · 23 years ago
  49. 3c29602 _Py_GetObjects(): GCC suggests to add () around && within || for some by Guido van Rossum · 23 years ago
  50. 212e614 divrem1 & long_format: found a clean way to factor divrem1 so that by Tim Peters · 23 years ago
  51. c8a6b9b long_format(): Simplify new code a bit. by Tim Peters · 23 years ago
  52. fad225f long_format(): Easy speedup for output bases that aren't a power of 2 (in by Tim Peters · 23 years ago
  53. 10c6692 GC for method objects. by Neil Schemenauer · 23 years ago
  54. 7eac9b7 GC for iterator objects. by Neil Schemenauer · 23 years ago
  55. 19cd292 GC for frame objects. by Neil Schemenauer · 23 years ago
  56. 0ec9aba On long to the negative long power, let float handle it instead of by Guido van Rossum · 23 years ago
  57. b82fedc On int to the negative integral power, let float handle it instead of by Guido van Rossum · 23 years ago
  58. efafcea Re-add 'advanced' xrange features, adding DeprecationWarnings as discussed by Thomas Wouters · 23 years ago
  59. 6ee4234 SF bug #439104: Tuple richcompares has code-typo. by Tim Peters · 23 years ago
  60. 3f56166 Rip out the fancy behaviors of xrange that nobody uses: repeat, slice, by Guido van Rossum · 23 years ago
  61. 72b0685 removed "register const" from scalar arguments to the unicode predicates by Fredrik Lundh · 23 years ago
  62. 8f45585 use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE tests. by Fredrik Lundh · 23 years ago
  63. ce9b5a5 Encode surrogates in UTF-8 even for a wide Py_UNICODE. by Martin v. Löwis · 23 years ago
  64. ac93bc2 When decoding UTF-16, don't assume that the buffer is in native endianness by Martin v. Löwis · 23 years ago
  65. 0ba70cc Support using UCS-4 as the Py_UNICODE type: by Martin v. Löwis · 23 years ago
  66. ee13dba more unicode tweaks: fix unicodectype for sizeof(Py_UNICODE) > sizeof(int) by Fredrik Lundh · 23 years ago
  67. 66a0d1d dict_update(): Generalize this method so {}.update() accepts any by Barry Warsaw · 23 years ago
  68. 1294ad0 experimental UCS-4 support: added USE_UCS4_STORAGE define to by Fredrik Lundh · 23 years ago
  69. 45714e9 experimental UCS-4 support: made compare a bit more robust, in case by Fredrik Lundh · 23 years ago
  70. 3083163 experimental UCS-4 support: don't assume that MS_WIN32 implies by Fredrik Lundh · 23 years ago
  71. 8c96369 PyFrameObject: rename f_stackbottom to f_stacktop, since it points to by Tim Peters · 23 years ago
  72. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  73. 1dad6a8 SF bug 434186: 0x80000000/2 != 0x80000000>>1 by Tim Peters · 23 years ago
  74. 70128a1 PyLong_{As, From}VoidPtr: cleanup, replacing assumptions in comments with by Tim Peters · 23 years ago
  75. c605784 dict_repr: Reuse one of the int vars (minor code simplification). by Tim Peters · 23 years ago
  76. 52e155e Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup. by Tim Peters · 23 years ago
  77. a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 23 years ago
  78. cf37dfc Change IS_LITTLE_ENDIAN macro -- a little faster now. by Tim Peters · 23 years ago
  79. ad98db1 Fix a mis-indentation in _PyUnicode_New() that caused me to stare at by Guido van Rossum · 23 years ago
  80. ede0509 _PyLong_AsByteArray: simplify the logic for dealing with the most- by Tim Peters · 23 years ago
  81. ce9de2f PyLong_From{Unsigned,}Long: count the # of digits first, so no more space by Tim Peters · 23 years ago
  82. f251d06 _PyLong_FromByteArray: changed decl of "carry" to match "thisbyte". No by Tim Peters · 23 years ago
  83. 05607ad _PyLong_AsByteArray: Don't do the "delicate overflow" check unless it's by Tim Peters · 23 years ago
  84. 898cf85 _PyLong_AsByteArray: added assert that the input is normalized. This is by Tim Peters · 23 years ago
  85. 9cb0c38 PyLong_As{Unsigned,}LongLong: fiddled final result casting. by Tim Peters · 23 years ago
  86. d1a7da6 longobject.c: by Tim Peters · 23 years ago
  87. 8bc84b4 _PyLong_{As,From}ByteArray: Minor code rearrangement aimed at improving by Tim Peters · 23 years ago
  88. 8c2133d Fix for bug #432384: Recursion in PyString_AsEncodedString? by Marc-André Lemburg · 23 years ago
  89. 7a3bfc3 Added q/Q standard (x-platform 8-byte ints) mode in struct module. by Tim Peters · 23 years ago
  90. 2a9b367 Two new private longobject API functions, by Tim Peters · 23 years ago
  91. fcc54ca Added a missing cast to the hashfunc initializer. by Jack Jansen · 23 years ago
  92. 0163d6d Patch #424475: Speed-up tp_compare usage, by special-casing the common by Martin v. Löwis · 23 years ago
  93. 8879a33 Fixes [ #430986 ] Buglet in PyUnicode_FromUnicode. by Marc-André Lemburg · 23 years ago
  94. afb6ae8 Store the mask instead of the size in dictobjects. The mask is more by Tim Peters · 23 years ago
  95. 453163d lookdict: stop more insane core-dump mutating comparison cases. Should by Tim Peters · 23 years ago
  96. 7b5d0af lookdict: Reduce obfuscating code duplication with a judicious goto. by Tim Peters · 23 years ago
  97. 19b77cf Finish the dict->string coredump fix. Need sleep. Bugfix candidate. by Tim Peters · 23 years ago
  98. 23cf6be Coredumpers from Michael Hudson, mutating dicts while printing or by Tim Peters · 23 years ago
  99. f4b33f6 dict_popitem(): Repaired last-second 2.1 comment, which misidentified the by Tim Peters · 23 years ago
  100. eb28ef2 New collision resolution scheme: no polynomials, simpler, faster, less by Tim Peters · 23 years ago