1. c8a6b9b long_format(): Simplify new code a bit. by Tim Peters · 23 years ago
  2. fad225f long_format(): Easy speedup for output bases that aren't a power of 2 (in by Tim Peters · 23 years ago
  3. 10c6692 GC for method objects. by Neil Schemenauer · 23 years ago
  4. 7eac9b7 GC for iterator objects. by Neil Schemenauer · 23 years ago
  5. 19cd292 GC for frame objects. by Neil Schemenauer · 23 years ago
  6. 0ec9aba On long to the negative long power, let float handle it instead of by Guido van Rossum · 23 years ago
  7. b82fedc On int to the negative integral power, let float handle it instead of by Guido van Rossum · 23 years ago
  8. efafcea Re-add 'advanced' xrange features, adding DeprecationWarnings as discussed by Thomas Wouters · 23 years ago
  9. 6ee4234 SF bug #439104: Tuple richcompares has code-typo. by Tim Peters · 23 years ago
  10. 3f56166 Rip out the fancy behaviors of xrange that nobody uses: repeat, slice, by Guido van Rossum · 23 years ago
  11. 72b0685 removed "register const" from scalar arguments to the unicode predicates by Fredrik Lundh · 23 years ago
  12. 8f45585 use Py_UNICODE_WIDE instead of USE_UCS4_STORAGE and Py_UNICODE_SIZE tests. by Fredrik Lundh · 23 years ago
  13. ce9b5a5 Encode surrogates in UTF-8 even for a wide Py_UNICODE. by Martin v. Löwis · 23 years ago
  14. ac93bc2 When decoding UTF-16, don't assume that the buffer is in native endianness by Martin v. Löwis · 23 years ago
  15. 0ba70cc Support using UCS-4 as the Py_UNICODE type: by Martin v. Löwis · 23 years ago
  16. ee13dba more unicode tweaks: fix unicodectype for sizeof(Py_UNICODE) > sizeof(int) by Fredrik Lundh · 23 years ago
  17. 66a0d1d dict_update(): Generalize this method so {}.update() accepts any by Barry Warsaw · 23 years ago
  18. 1294ad0 experimental UCS-4 support: added USE_UCS4_STORAGE define to by Fredrik Lundh · 23 years ago
  19. 45714e9 experimental UCS-4 support: made compare a bit more robust, in case by Fredrik Lundh · 23 years ago
  20. 3083163 experimental UCS-4 support: don't assume that MS_WIN32 implies by Fredrik Lundh · 23 years ago
  21. 8c96369 PyFrameObject: rename f_stackbottom to f_stacktop, since it points to by Tim Peters · 23 years ago
  22. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  23. 1dad6a8 SF bug 434186: 0x80000000/2 != 0x80000000>>1 by Tim Peters · 23 years ago
  24. 70128a1 PyLong_{As, From}VoidPtr: cleanup, replacing assumptions in comments with by Tim Peters · 23 years ago
  25. c605784 dict_repr: Reuse one of the int vars (minor code simplification). by Tim Peters · 23 years ago
  26. 52e155e Reformat decl of new _PyString_Join. Add NEWS blurb about repr() speedup. by Tim Peters · 23 years ago
  27. a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 23 years ago
  28. cf37dfc Change IS_LITTLE_ENDIAN macro -- a little faster now. by Tim Peters · 23 years ago
  29. ad98db1 Fix a mis-indentation in _PyUnicode_New() that caused me to stare at by Guido van Rossum · 23 years ago
  30. ede0509 _PyLong_AsByteArray: simplify the logic for dealing with the most- by Tim Peters · 23 years ago
  31. ce9de2f PyLong_From{Unsigned,}Long: count the # of digits first, so no more space by Tim Peters · 23 years ago
  32. f251d06 _PyLong_FromByteArray: changed decl of "carry" to match "thisbyte". No by Tim Peters · 23 years ago
  33. 05607ad _PyLong_AsByteArray: Don't do the "delicate overflow" check unless it's by Tim Peters · 23 years ago
  34. 898cf85 _PyLong_AsByteArray: added assert that the input is normalized. This is by Tim Peters · 23 years ago
  35. 9cb0c38 PyLong_As{Unsigned,}LongLong: fiddled final result casting. by Tim Peters · 23 years ago
  36. d1a7da6 longobject.c: by Tim Peters · 23 years ago
  37. 8bc84b4 _PyLong_{As,From}ByteArray: Minor code rearrangement aimed at improving by Tim Peters · 23 years ago
  38. 8c2133d Fix for bug #432384: Recursion in PyString_AsEncodedString? by Marc-André Lemburg · 23 years ago
  39. 7a3bfc3 Added q/Q standard (x-platform 8-byte ints) mode in struct module. by Tim Peters · 23 years ago
  40. 2a9b367 Two new private longobject API functions, by Tim Peters · 23 years ago
  41. fcc54ca Added a missing cast to the hashfunc initializer. by Jack Jansen · 23 years ago
  42. 0163d6d Patch #424475: Speed-up tp_compare usage, by special-casing the common by Martin v. Löwis · 23 years ago
  43. 8879a33 Fixes [ #430986 ] Buglet in PyUnicode_FromUnicode. by Marc-André Lemburg · 23 years ago
  44. afb6ae8 Store the mask instead of the size in dictobjects. The mask is more by Tim Peters · 23 years ago
  45. 453163d lookdict: stop more insane core-dump mutating comparison cases. Should by Tim Peters · 23 years ago
  46. 7b5d0af lookdict: Reduce obfuscating code duplication with a judicious goto. by Tim Peters · 23 years ago
  47. 19b77cf Finish the dict->string coredump fix. Need sleep. Bugfix candidate. by Tim Peters · 23 years ago
  48. 23cf6be Coredumpers from Michael Hudson, mutating dicts while printing or by Tim Peters · 23 years ago
  49. f4b33f6 dict_popitem(): Repaired last-second 2.1 comment, which misidentified the by Tim Peters · 23 years ago
  50. eb28ef2 New collision resolution scheme: no polynomials, simpler, faster, less by Tim Peters · 23 years ago
  51. 9cea41c fix bogus indentation by Jeremy Hylton · 23 years ago
  52. 0dcea59 _PyTuple_Resize: guard against PyTuple_New() returning NULL, using Tim's by Thomas Wouters · 23 years ago
  53. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  54. 6a92237 _PyTuple_Resize: take into account the empty tuple. There can be only one. by Thomas Wouters · 23 years ago
  55. 15d4929 Implement an old idea of Christian Tismer's: use polynomial division by Tim Peters · 23 years ago
  56. 1af03e9 Change list.extend() error msgs and NEWS to reflect that list.extend() by Tim Peters · 23 years ago
  57. 442914d Cruft cleanup: removed the #ifdef'ery in support of compiling to allow by Tim Peters · 23 years ago
  58. 65b8b84 roundupsize() and friends: fiddle over-allocation strategy for list resizing. by Tim Peters · 23 years ago
  59. cd35306 Patch #424335: Implement string_richcompare, remove string_compare. by Martin v. Löwis · 23 years ago
  60. f8a548c dictresize(): Rebuild small tables if there are any dummies, not just if by Tim Peters · 23 years ago
  61. 0c6010b Jack Jansen hit a bug in the new dict code, reported on python-dev. by Tim Peters · 23 years ago
  62. 0c23231 Remove unused variable. by Fred Drake · 23 years ago
  63. dea48ec SF patch #425242: Patch which "inlines" small dictionaries. by Tim Peters · 23 years ago
  64. 5b02184 file_getiter(): make iter(file) be equivalent to file.xreadlines(). by Guido van Rossum · 23 years ago
  65. 0ba9e3a init_name_op(): add (void) to the argument list to make it a valid by Guido van Rossum · 23 years ago
  66. 489b56e This patch changes the behaviour of the UTF-16 codec family. Only the by Marc-André Lemburg · 23 years ago
  67. 91a364d Bugfix candidate. by Tim Peters · 23 years ago
  68. 1928314 Speed dictresize by collapsing its two passes into one; the reason given by Tim Peters · 23 years ago
  69. d7ed3bf Speed tuple comparisons in two ways: by Tim Peters · 23 years ago
  70. 2d92041 This patch changes the way the string .encode() method works slightly by Marc-André Lemburg · 23 years ago
  71. 342c65e Aggressive reordering of dict comparisons. In case of collision, it stands by Tim Peters · 23 years ago
  72. 2f228e7 Get rid of the superstitious "~" in dict hashing's "i = (~hash) & mask". by Tim Peters · 23 years ago
  73. 16cabc0 Repair "module has no attribute xxx" error msg; bug introduced when by Tim Peters · 23 years ago
  74. d85e102 Variant of patch #423262: Change module attribute get & set by Tim Peters · 23 years ago
  75. 1b0feb4 Variant of SF patch 423181 by Jeremy Hylton · 23 years ago
  76. 5acbfcc Cosmetic: code under "else" clause was missing indent. by Tim Peters · 23 years ago
  77. 4fa58bf Restore dicts' tp_compare slot, and change dict_richcompare to say it by Tim Peters · 23 years ago
  78. 3918fb2 Repair typo in comment. by Tim Peters · 23 years ago
  79. 95bf939 SF bug #422121 Insecurities in dict comparison. by Tim Peters · 23 years ago
  80. 9c012af Heh. I need a break. After this: stropmodule & stringobject were more by Tim Peters · 23 years ago
  81. 4cd44ef Fudge. stropmodule and stringobject both had copies of the buggy by Tim Peters · 23 years ago
  82. 1a97d5f SF patch #416247 2.1c1 stringobject: unused vrbl cleanup. Thanks to Mark Favas. by Tim Peters · 23 years ago
  83. 4862ab7 Sheesh -- repair the dodge around "cast isn't an lvalue" complaints to by Tim Peters · 23 years ago
  84. 9e897f4 Mark Favas reported that gcc caught me using casts as lvalues. Dodge it. by Tim Peters · 23 years ago
  85. b4bbcd7 Ack! Restore the COUNT_ALLOCS one_strings code. by Tim Peters · 23 years ago
  86. cf5ad5d My change to string_item() left an extra reference to each 1-character by Tim Peters · 23 years ago
  87. 5b4d477 Intern 1-character strings as soon as they're created. As-is, they aren't by Tim Peters · 23 years ago
  88. 72f98e9 SF bug #422177: Results from .pyc differs from .py by Tim Peters · 23 years ago
  89. e63415e SF patch #421922: Implement rich comparison for dicts. by Tim Peters · 23 years ago
  90. 4c88901 SF patch 419176 from MvL; fixed bug 418977 by Jeremy Hylton · 23 years ago
  91. d37292b Remove unused variable by Jeremy Hylton · 23 years ago
  92. 6d60b2e SF bug #422108 - Error in rich comparisons. by Tim Peters · 23 years ago
  93. cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 23 years ago
  94. 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 23 years ago
  95. de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 23 years ago
  96. 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 23 years ago
  97. 12d0a6c Fix a tiny and unlikely memory leak. Was there before too, and actually by Tim Peters · 23 years ago
  98. 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 23 years ago
  99. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  100. 6aebded The weakref support in PyObject_InitVar() as well; this should have come out by Fred Drake · 23 years ago