1. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  2. 29a6d44 Added comparison functions to dict proxies. by Raymond Hettinger · 22 years ago
  3. d94c28e SF #561244: micro optimizations, builtins cannot be NULL, so use Py_INCREF by Neal Norwitz · 22 years ago
  4. 604cd6a complex() was the only numeric constructor that created a new instance by Raymond Hettinger · 22 years ago
  5. bf935fd string_contains(): speed up by avoiding function calls where by Guido van Rossum · 22 years ago
  6. 6248f44 Speedup for PyObject_IsTrue(): check for True and False first. by Guido van Rossum · 22 years ago
  7. 81912d4 Speedup for PyObject_RichCompareBool(): PyObject_RichCompare() almost by Guido van Rossum · 22 years ago
  8. 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 22 years ago
  9. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 22 years ago
  10. 0d2d87d long_format(), long_lshift(): Someone on c.l.py is trying to boost by Tim Peters · 22 years ago
  11. 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 22 years ago
  12. 75585d4 getinstclassname(): Squash new compiler wng in assert (comparison of by Tim Peters · 22 years ago
  13. 45ec02a SF patch 576101, by Oren Tirosh: alternative implementation of by Guido van Rossum · 22 years ago
  14. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
  15. 056fbf4 Another modest speedup in PyObject_GenericGetAttr(): inline the call by Guido van Rossum · 22 years ago
  16. 492b46f Make PyDescr_IsData() a macro. It's too simple to be a function. by Guido van Rossum · 22 years ago
  17. 69734a5 Check in my ultra-shortlived patch #597220. by Michael W. Hudson · 22 years ago
  18. c66ff44 Inline call to _PyObject_GetDictPtr() in PyObject_GenericGetAttr(). by Guido van Rossum · 22 years ago
  19. c588e90 Simple but important optimization for descr_check(): instead of the by Guido van Rossum · 22 years ago
  20. b898d9f Get this to compile again if Py_USING_UNICODE is not defined. by Neal Norwitz · 22 years ago
  21. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  22. 8e82920 Fix SF bug 595838 -- buffer in type_new() should not be static. Moved by Guido van Rossum · 22 years ago
  23. e417de0 Illustrating by example one good reason not to trust a proof <wink>. by Tim Peters · 22 years ago
  24. ab86c2b k_mul() comments: In honor of Dijkstra, made the proof that "t3 fits" by Tim Peters · 22 years ago
  25. 9973d74 long_mul(): Simplified exit code. In particular, k_mul() returns a by Tim Peters · 22 years ago
  26. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  27. 8b73542 Reflow long lines. by Jeremy Hylton · 22 years ago
  28. 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 22 years ago
  29. 323a9cf PyType_Ready(): initialize the base class a bit earlier, so that if we by Guido van Rossum · 22 years ago
  30. 48d52c0 k_mul() comments: Simplified the simplified explanation of why ah*bh and by Tim Peters · 22 years ago
  31. 8e966ee k_mul() comments: Explained why there's always enough room to subtract by Tim Peters · 22 years ago
  32. eb3f00a Check for trailing backslash. Fixes #593656. by Martin v. Löwis · 22 years ago
  33. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago
  34. 5dc2a37 Allow more docstrings to be removed during compilation by Neal Norwitz · 22 years ago
  35. cba6e96 Fixed error in new comment. by Tim Peters · 22 years ago
  36. d6974a5 k_mul(): The fix for (ah+al)*(bh+bl) spilling 1 bit beyond the allocated by Tim Peters · 22 years ago
  37. d47714a Allow docstrings to be removed during compilation for *SLOT macro and friends by Neal Norwitz · 22 years ago
  38. 858e34f Allow docstrings to be removed during compilation by Neal Norwitz · 22 years ago
  39. 4571e9d Add an improvement wrinkle to Neil Schemenauer's change to int_mul by Guido van Rossum · 22 years ago
  40. d8c8048 Fix comment for PyLong_AsUnsignedLong() to say that the return value by Guido van Rossum · 22 years ago
  41. 1203403 k_lopsided_mul(): This allocated more space for bslice than necessary. by Tim Peters · 22 years ago
  42. 6000464 Added new function k_lopsided_mul(), which is much more efficient than by Tim Peters · 22 years ago
  43. 547607c k_mul(): Moved an assert down. In a debug build, interrupting a by Tim Peters · 22 years ago
  44. 70b041b k_mul(): Heh -- I checked in two fixes for the last problem. Only keep by Tim Peters · 22 years ago
  45. d8b2173 k_mul(): White-box testing turned up that (ah+al)*(bh+bl) can, in rare by Tim Peters · 22 years ago
  46. 3747a0f Fix MSVC warnings. by Guido van Rossum · 22 years ago
  47. ad47da0 Refactor how __dict__ and __weakref__ interact with __slots__. by Guido van Rossum · 22 years ago
  48. 115c888 x_mul(): Made life easier for C optimizers in the "grade school" by Tim Peters · 22 years ago
  49. d64c1de k_mul() and long_mul(): I'm confident that the Karatsuba algorithm is by Tim Peters · 22 years ago
  50. 738eda7 k_mul: Rearranged computation for better cache use. Ignored overflow by Tim Peters · 22 years ago
  51. 44121a6 x_mul(): This failed to normalize its result. by Tim Peters · 22 years ago
  52. 877a212 Introduced helper functions v_iadd and v_isub, for in-place digit-vector by Tim Peters · 22 years ago
  53. fc07e56 k_mul(): Repaired another typo in another comment. by Tim Peters · 22 years ago
  54. 18c15b9 k_mul(): Repaired typo in comment. by Tim Peters · 22 years ago
  55. 5af4e6c Cautious introduction of a patch that started from by Tim Peters · 22 years ago
  56. da1a221 int_lshift(): Simplified/sped overflow-checking. by Tim Peters · 22 years ago
  57. 643d59c Use a better check for overflow from a<<b. by Guido van Rossum · 22 years ago
  58. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 22 years ago
  59. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 22 years ago
  60. 3ddb856 Fixed new typos, added a little info about ~sort versus "hint"s. by Tim Peters · 22 years ago
  61. 40af889 Disallow class assignment completely unless both old and new are heap by Guido van Rossum · 22 years ago
  62. e05f65a 1. Combined the base and length arrays into a single array of structs. by Tim Peters · 22 years ago
  63. b80595f The samplesort-vs-mergesort #-of-comparisons comparisons were captured by Tim Peters · 22 years ago
  64. f16c3dc Add support for the iterator protocol to weakref proxy objects. by Fred Drake · 22 years ago
  65. f36921c Unicode replace() method with empty pattern argument should fail, like by Guido van Rossum · 22 years ago
  66. 3bc3f28 Only call sq_repeat if the object does not have a nb_multiply slot. One by Neil Schemenauer · 22 years ago
  67. 671764b Repaired a braino in the description of bad minrun values. by Tim Peters · 22 years ago
  68. 721f62e Major speedup for new-style class creation. Turns out there was some by Guido van Rossum · 22 years ago
  69. 48923c5 Moved special case for tuples from iterobject.c to by Raymond Hettinger · 22 years ago
  70. 7bed213 Significant speedup in new-style object creation: in slot_tp_new(), by Guido van Rossum · 22 years ago
  71. febd61d A modest speedup of object deallocation. call_finalizer() did rather by Guido van Rossum · 22 years ago
  72. 6c511e6 Added info about highwater heap-memory use for the sortperf.py tests; + a by Tim Peters · 22 years ago
  73. 6063e26 PyList_Reverse(): This was leaking a reference to Py_None on every call. by Tim Peters · 22 years ago
  74. 0906e07 Fix a subtle bug in the trashcan code I added yesterday to subtype_dealloc(). by Guido van Rossum · 22 years ago
  75. 3f19b10 Replace abort with Py_FatalError. by Martin v. Löwis · 22 years ago
  76. 657d222 Make more functions static by Neal Norwitz · 22 years ago
  77. d8b995f Make readahead functions static by Neal Norwitz · 22 years ago
  78. 22b1387 Fix SF bug 574207 (chained __slots__ dealloc segfault). by Guido van Rossum · 22 years ago
  79. 6a043f3 PyUnicode_Contains(): The memcmp() call didn't take into account the by Barry Warsaw · 22 years ago
  80. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 22 years ago
  81. 7a6e959 SF patch 580331 by Oren Tirosh: make file objects their own iterator. by Guido van Rossum · 22 years ago
  82. bc552ce SF 582071 clarified the .split() method's docstring to note that sep=None by Raymond Hettinger · 22 years ago
  83. 66860f6 Sped the usual case for sorting by calling PyObject_RichCompareBool by Tim Peters · 22 years ago
  84. 6bdbc9e SF bug 590366: Small typo in listsort:ParseTuple by Tim Peters · 22 years ago
  85. f4be427 Tim found that once test_longexp has run, test_sort takes very much by Guido van Rossum · 22 years ago
  86. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 22 years ago
  87. a64dc24 Replaced samplesort with a stable, adaptive mergesort. by Tim Peters · 22 years ago
  88. 92f81f2 Checking in the doc file for "timsort". There's way too much here to by Tim Peters · 22 years ago
  89. cee5ca0 SF patch #587889, fix memory leak of tp_doc by Neal Norwitz · 22 years ago
  90. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  91. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  92. 88fe4ff Fix the problem of not raising a TypeError exception when doing: by Neal Norwitz · 22 years ago
  93. 673c0a2 Patch #574867: Correct list.extend docstring. by Martin v. Löwis · 22 years ago
  94. 7beeed5 SF patch #577031, remove PyArg_Parse() since it's deprecated by Neal Norwitz · 22 years ago
  95. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
  96. 35b37a5 tighten up the unicode object's docstring a tad by Skip Montanaro · 22 years ago
  97. 73a088e Don't be so hasty. If PyInt_AsLong() raises an error, don't set ValueError. by Jeremy Hylton · 22 years ago
  98. f20fcf9 Complain if __len__() returns < 0, just like classic classes. by Jeremy Hylton · 22 years ago
  99. 206d8f8 Silly typo. Not sure how that got in. by Michael W. Hudson · 22 years ago
  100. f0d777c A few days ago, Guido said (in the thread "[Python-Dev] Python by Michael W. Hudson · 22 years ago