1. 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 22 years ago
  2. cbd6fb9 Handle really big steps in extended slices. by Michael W. Hudson · 22 years ago
  3. 03b109a Use PyOS_snprintf() instead of sprintf and wrap the long line by Neal Norwitz · 22 years ago
  4. 2801fe1 Use PyList_CheckExact and PyTuple_CheckExact for checking whether by Michael W. Hudson · 22 years ago
  5. 5da854f This is Alex Martelli's patch by Michael W. Hudson · 22 years ago
  6. 173f11d Some days, I think my comment of by Michael W. Hudson · 22 years ago
  7. f740bdf Since properties are supported here, is possible that by Guido van Rossum · 22 years ago
  8. 8c14028 Patch #627105: Document that SYSTEM_PAGE_SIZE really should not be by Martin v. Löwis · 22 years ago
  9. 9cd87aa Fix for bug #626172: crash using unicode latin1 single char by Marc-André Lemburg · 22 years ago
  10. edf368c Make lower/upper/title work for non-BMP characters. by Martin v. Löwis · 22 years ago
  11. 673cd82 Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman by Neal Norwitz · 22 years ago
  12. 9def6a3 Update to Unicode 3.2 database. by Martin v. Löwis · 22 years ago
  13. 617080b Fix (real! :-) memory leaks in half_cmp and half_binop. by Guido van Rossum · 22 years ago
  14. 3930bc3 Sigh. That wasn't a memory leak, that was Guido committing before by Guido van Rossum · 22 years ago
  15. 72297bb Fix memory leak in add_subclass() found by NealN with valgrind. Will backport. by Guido van Rossum · 22 years ago
  16. ceaa77c Add n_unnamed_fields into the type. by Martin v. Löwis · 22 years ago
  17. f607bda Add PyStructSequence_UnnamedField. Add stat_float_times. by Martin v. Löwis · 22 years ago
  18. 6e5680f For some reason (probably cut and paste), __ipow__ for new-style by Guido van Rossum · 22 years ago
  19. 13b1a5c Don't drop old slots if _unicode_to_string did not change anything. by Martin v. Löwis · 22 years ago
  20. d919a59 Allow Unicode strings in __slots__, converting them to byte strings. by Martin v. Löwis · 22 years ago
  21. bfa5a14 Darn! Don't divide by zero. Bad fix. :-) by Guido van Rossum · 22 years ago
  22. a5c0e6d Add checks for size overflow on list*n, list+list, tuple+tuple. by Guido van Rossum · 22 years ago
  23. 6e08c14 PyObject_Init[Var] is almost always called from the PyObject_NEW[_VAR] by Guido van Rossum · 22 years ago
  24. a5f0907 Back out #479898. by Martin v. Löwis · 22 years ago
  25. 049cd6b Fix a nasty endcase reported by Armin Rigo in SF bug 618623: by Guido van Rossum · 22 years ago
  26. 8052f89 Undo this part of the previous checkin: by Guido van Rossum · 22 years ago
  27. b00c07f The string formatting code has a test to switch to Unicode when %s by Guido van Rossum · 22 years ago
  28. bab9559 Include wctype.h. by Martin v. Löwis · 22 years ago
  29. fed2405 Patch #479898: Use multibyte C library for printing strings if available. by Martin v. Löwis · 22 years ago
  30. c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
  31. 24e53b6 Add cast to avoid compiler warning. by Marc-André Lemburg · 22 years ago
  32. a0378e1 Fix part of SF bug # 544248 gcc warning in unicodeobject.c by Neal Norwitz · 22 years ago
  33. efc1188 Fix warnings on 64-bit platforms about casts from pointers to ints. by Guido van Rossum · 22 years ago
  34. 5c1ad84 Fix for platforms where int != long. by Michael W. Hudson · 22 years ago
  35. 02fe647 Insert an overflow check when the sequence repetition count is outside by Guido van Rossum · 22 years ago
  36. d4774fb Untested code for 64-bit platforms. range_length() is declared as int by Guido van Rossum · 22 years ago
  37. 02ff6a9 A slight change to SET_LINENO-less tracing. by Michael W. Hudson · 22 years ago
  38. 2412853 Fix escaping of non-ASCII characters. by Martin v. Löwis · 22 years ago
  39. bb9c5f5 PyObject_RichCompareBool() already returns -1, 0, or 1, so return its value by Neal Norwitz · 22 years ago
  40. bd9adab Micro-optimization for list_contains. Factored double if test out of the loop. by Raymond Hettinger · 22 years ago
  41. aae5999 Micro-optimization for list_contains. Factored double if test out of the loop. by Raymond Hettinger · 22 years ago
  42. 5c1ee17 Change the unicode.translate docstring to document that by Walter Dörwald · 22 years ago
  43. efae886 In doc strings, use 'k in D' rather than D.has_key(k). by Guido van Rossum · 22 years ago
  44. d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
  45. 8709a42 Check whether a string resize is necessary at the end by Walter Dörwald · 22 years ago
  46. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  47. 29a6d44 Added comparison functions to dict proxies. by Raymond Hettinger · 22 years ago
  48. d94c28e SF #561244: micro optimizations, builtins cannot be NULL, so use Py_INCREF by Neal Norwitz · 22 years ago
  49. 604cd6a complex() was the only numeric constructor that created a new instance by Raymond Hettinger · 22 years ago
  50. bf935fd string_contains(): speed up by avoiding function calls where by Guido van Rossum · 22 years ago
  51. 6248f44 Speedup for PyObject_IsTrue(): check for True and False first. by Guido van Rossum · 22 years ago
  52. 81912d4 Speedup for PyObject_RichCompareBool(): PyObject_RichCompare() almost by Guido van Rossum · 22 years ago
  53. 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 22 years ago
  54. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 22 years ago
  55. 0d2d87d long_format(), long_lshift(): Someone on c.l.py is trying to boost by Tim Peters · 22 years ago
  56. 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 22 years ago
  57. 75585d4 getinstclassname(): Squash new compiler wng in assert (comparison of by Tim Peters · 22 years ago
  58. 45ec02a SF patch 576101, by Oren Tirosh: alternative implementation of by Guido van Rossum · 22 years ago
  59. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
  60. 056fbf4 Another modest speedup in PyObject_GenericGetAttr(): inline the call by Guido van Rossum · 22 years ago
  61. 492b46f Make PyDescr_IsData() a macro. It's too simple to be a function. by Guido van Rossum · 22 years ago
  62. 69734a5 Check in my ultra-shortlived patch #597220. by Michael W. Hudson · 22 years ago
  63. c66ff44 Inline call to _PyObject_GetDictPtr() in PyObject_GenericGetAttr(). by Guido van Rossum · 22 years ago
  64. c588e90 Simple but important optimization for descr_check(): instead of the by Guido van Rossum · 22 years ago
  65. b898d9f Get this to compile again if Py_USING_UNICODE is not defined. by Neal Norwitz · 22 years ago
  66. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  67. 8e82920 Fix SF bug 595838 -- buffer in type_new() should not be static. Moved by Guido van Rossum · 22 years ago
  68. e417de0 Illustrating by example one good reason not to trust a proof <wink>. by Tim Peters · 22 years ago
  69. ab86c2b k_mul() comments: In honor of Dijkstra, made the proof that "t3 fits" by Tim Peters · 22 years ago
  70. 9973d74 long_mul(): Simplified exit code. In particular, k_mul() returns a by Tim Peters · 22 years ago
  71. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  72. 8b73542 Reflow long lines. by Jeremy Hylton · 22 years ago
  73. 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 22 years ago
  74. 323a9cf PyType_Ready(): initialize the base class a bit earlier, so that if we by Guido van Rossum · 22 years ago
  75. 48d52c0 k_mul() comments: Simplified the simplified explanation of why ah*bh and by Tim Peters · 22 years ago
  76. 8e966ee k_mul() comments: Explained why there's always enough room to subtract by Tim Peters · 22 years ago
  77. eb3f00a Check for trailing backslash. Fixes #593656. by Martin v. Löwis · 22 years ago
  78. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago
  79. 5dc2a37 Allow more docstrings to be removed during compilation by Neal Norwitz · 22 years ago
  80. cba6e96 Fixed error in new comment. by Tim Peters · 22 years ago
  81. d6974a5 k_mul(): The fix for (ah+al)*(bh+bl) spilling 1 bit beyond the allocated by Tim Peters · 22 years ago
  82. d47714a Allow docstrings to be removed during compilation for *SLOT macro and friends by Neal Norwitz · 22 years ago
  83. 858e34f Allow docstrings to be removed during compilation by Neal Norwitz · 22 years ago
  84. 4571e9d Add an improvement wrinkle to Neil Schemenauer's change to int_mul by Guido van Rossum · 22 years ago
  85. d8c8048 Fix comment for PyLong_AsUnsignedLong() to say that the return value by Guido van Rossum · 22 years ago
  86. 1203403 k_lopsided_mul(): This allocated more space for bslice than necessary. by Tim Peters · 22 years ago
  87. 6000464 Added new function k_lopsided_mul(), which is much more efficient than by Tim Peters · 22 years ago
  88. 547607c k_mul(): Moved an assert down. In a debug build, interrupting a by Tim Peters · 22 years ago
  89. 70b041b k_mul(): Heh -- I checked in two fixes for the last problem. Only keep by Tim Peters · 22 years ago
  90. d8b2173 k_mul(): White-box testing turned up that (ah+al)*(bh+bl) can, in rare by Tim Peters · 22 years ago
  91. 3747a0f Fix MSVC warnings. by Guido van Rossum · 22 years ago
  92. ad47da0 Refactor how __dict__ and __weakref__ interact with __slots__. by Guido van Rossum · 22 years ago
  93. 115c888 x_mul(): Made life easier for C optimizers in the "grade school" by Tim Peters · 22 years ago
  94. d64c1de k_mul() and long_mul(): I'm confident that the Karatsuba algorithm is by Tim Peters · 22 years ago
  95. 738eda7 k_mul: Rearranged computation for better cache use. Ignored overflow by Tim Peters · 22 years ago
  96. 44121a6 x_mul(): This failed to normalize its result. by Tim Peters · 22 years ago
  97. 877a212 Introduced helper functions v_iadd and v_isub, for in-place digit-vector by Tim Peters · 22 years ago
  98. fc07e56 k_mul(): Repaired another typo in another comment. by Tim Peters · 22 years ago
  99. 18c15b9 k_mul(): Repaired typo in comment. by Tim Peters · 22 years ago
  100. 5af4e6c Cautious introduction of a patch that started from by Tim Peters · 22 years ago