1. d2bef82 Update comments about the performance of xrange(). by Raymond Hettinger · 22 years ago
  2. bca1cbc SF 548651: Fix the METH_CLASS implementation. by Tim Peters · 22 years ago
  3. ea7f75d slot_nb_nonzero(): Another leak uncovered by the sandbox datetime by Tim Peters · 22 years ago
  4. c2e095f Fix typo in abstract.c which caused __rpow__ to not be invoked. by Raymond Hettinger · 22 years ago
  5. e03e5b1 Remove assumption that cls is a subclass of dict. by Raymond Hettinger · 22 years ago
  6. 61ce0a9 slot_tp_hash(): In the normal path, this leaked a reference to the by Tim Peters · 22 years ago
  7. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago
  8. a69c030 The final tweaks before closing by Michael W. Hudson · 22 years ago
  9. b02bb5e Replace BadInternalCall with TypeError. Add a test case. Fix whitespace. by Raymond Hettinger · 22 years ago
  10. ef786ae Add missing decref by Neal Norwitz · 22 years ago
  11. ade8c8b2 Nudge getting __module__ and __name__ for new-style classes so that by Michael W. Hudson · 22 years ago
  12. 7e7c00d I don't know why staring at the email to python-checkins made me by Michael W. Hudson · 22 years ago
  13. 586da8f Readjustments to the way we cope with exceptions from subclasses' by Michael W. Hudson · 22 years ago
  14. caf17be I had the inheritance cycle stuff backwards. Oops! by Michael W. Hudson · 22 years ago
  15. e33d3df SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class by Raymond Hettinger · 22 years ago
  16. ac74f5d Initialize a variable. Hope this makes things work for Guido. by Michael W. Hudson · 22 years ago
  17. 98bbc49 This is my patch: by Michael W. Hudson · 22 years ago
  18. 98f3373 A tweaked version of Jeremy's patch #642489, to produce better error by Guido van Rossum · 22 years ago
  19. b5c980b Add unidata_version. Bump generator version number. by Martin v. Löwis · 22 years ago
  20. d5169ba Regenerate from Unicode 3.2.0 to include all First/Last ranges. by Martin v. Löwis · 22 years ago
  21. b808c5c Simplify use of NB_BINOP and NB_TERNOP by making them do the pointer by Neil Schemenauer · 22 years ago
  22. d46fbc3 Remove special handling of str and unicode in PyNumber_InPlaceRemainder. They by Neil Schemenauer · 22 years ago
  23. a797d81 Patch #642500 with slight modifications: allow keyword arguments in by Just van Rossum · 22 years ago
  24. 39f59b0 Remove MALLOC_ZERO_RETURNS_NULL. by Martin v. Löwis · 22 years ago
  25. 0073f2e Fix --disable-unicode compilation problems. by Martin v. Löwis · 22 years ago
  26. 7d79124 float_int(): Some systems raise an exception if a double is cast to by Tim Peters · 22 years ago
  27. f171540 Change int() so that passing a string, unicode, float or long argument by Walter Dörwald · 22 years ago
  28. ce30bc9 Add nb_remainder (i.e. __mod__) slot to unicode type. Fixes SF bug #615506. by Neil Schemenauer · 22 years ago
  29. a6cd4e6 Add nb_remainder (i.e. __mod__) slot to str type. Fixes SF bug #615506. by Neil Schemenauer · 22 years ago
  30. 2c77e90 Improve exception message raised by PyFloat_AsDouble if the object does not by Neil Schemenauer · 22 years ago
  31. 26db587 str and unicode objects now have a __mod__ slot so don't special case them in by Neil Schemenauer · 22 years ago
  32. 89350a4 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes by Neil Schemenauer · 22 years ago
  33. 9a6b8d8 Repaired illegal syntax most compilers probably let slide (but MSVC by Tim Peters · 22 years ago
  34. 1f12131 Use the new C3 MRO algorithm, implemented by Samuele Pedroni (SF patch by Guido van Rossum · 22 years ago
  35. 80a1bf4 Fix SF # 635969, No error "not all arguments converted" by Neal Norwitz · 22 years ago
  36. b9099c3 SF patch 637176: list.sort crasher by Tim Peters · 22 years ago
  37. 5ae8e01 Restore attribute access so that the following work again: by Raymond Hettinger · 22 years ago
  38. 07e1476 Make int("...") return a long if an int would overflow. by Walter Dörwald · 22 years ago
  39. cbd6fb9 Handle really big steps in extended slices. by Michael W. Hudson · 22 years ago
  40. 03b109a Use PyOS_snprintf() instead of sprintf and wrap the long line by Neal Norwitz · 22 years ago
  41. 2801fe1 Use PyList_CheckExact and PyTuple_CheckExact for checking whether by Michael W. Hudson · 22 years ago
  42. 5da854f This is Alex Martelli's patch by Michael W. Hudson · 22 years ago
  43. 173f11d Some days, I think my comment of by Michael W. Hudson · 22 years ago
  44. f740bdf Since properties are supported here, is possible that by Guido van Rossum · 22 years ago
  45. 8c14028 Patch #627105: Document that SYSTEM_PAGE_SIZE really should not be by Martin v. Löwis · 22 years ago
  46. 9cd87aa Fix for bug #626172: crash using unicode latin1 single char by Marc-André Lemburg · 22 years ago
  47. edf368c Make lower/upper/title work for non-BMP characters. by Martin v. Löwis · 22 years ago
  48. 673cd82 Fix SF # 624982, Potential AV in slot_sq_item, by Greg Chapman by Neal Norwitz · 22 years ago
  49. 9def6a3 Update to Unicode 3.2 database. by Martin v. Löwis · 22 years ago
  50. 617080b Fix (real! :-) memory leaks in half_cmp and half_binop. by Guido van Rossum · 22 years ago
  51. 3930bc3 Sigh. That wasn't a memory leak, that was Guido committing before by Guido van Rossum · 22 years ago
  52. 72297bb Fix memory leak in add_subclass() found by NealN with valgrind. Will backport. by Guido van Rossum · 22 years ago
  53. ceaa77c Add n_unnamed_fields into the type. by Martin v. Löwis · 22 years ago
  54. f607bda Add PyStructSequence_UnnamedField. Add stat_float_times. by Martin v. Löwis · 22 years ago
  55. 6e5680f For some reason (probably cut and paste), __ipow__ for new-style by Guido van Rossum · 22 years ago
  56. 13b1a5c Don't drop old slots if _unicode_to_string did not change anything. by Martin v. Löwis · 22 years ago
  57. d919a59 Allow Unicode strings in __slots__, converting them to byte strings. by Martin v. Löwis · 22 years ago
  58. bfa5a14 Darn! Don't divide by zero. Bad fix. :-) by Guido van Rossum · 22 years ago
  59. a5c0e6d Add checks for size overflow on list*n, list+list, tuple+tuple. by Guido van Rossum · 22 years ago
  60. 6e08c14 PyObject_Init[Var] is almost always called from the PyObject_NEW[_VAR] by Guido van Rossum · 22 years ago
  61. a5f0907 Back out #479898. by Martin v. Löwis · 22 years ago
  62. 049cd6b Fix a nasty endcase reported by Armin Rigo in SF bug 618623: by Guido van Rossum · 22 years ago
  63. 8052f89 Undo this part of the previous checkin: by Guido van Rossum · 22 years ago
  64. b00c07f The string formatting code has a test to switch to Unicode when %s by Guido van Rossum · 22 years ago
  65. bab9559 Include wctype.h. by Martin v. Löwis · 22 years ago
  66. fed2405 Patch #479898: Use multibyte C library for printing strings if available. by Martin v. Löwis · 22 years ago
  67. c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
  68. 24e53b6 Add cast to avoid compiler warning. by Marc-André Lemburg · 22 years ago
  69. a0378e1 Fix part of SF bug # 544248 gcc warning in unicodeobject.c by Neal Norwitz · 22 years ago
  70. efc1188 Fix warnings on 64-bit platforms about casts from pointers to ints. by Guido van Rossum · 22 years ago
  71. 5c1ad84 Fix for platforms where int != long. by Michael W. Hudson · 22 years ago
  72. 02fe647 Insert an overflow check when the sequence repetition count is outside by Guido van Rossum · 22 years ago
  73. d4774fb Untested code for 64-bit platforms. range_length() is declared as int by Guido van Rossum · 22 years ago
  74. 02ff6a9 A slight change to SET_LINENO-less tracing. by Michael W. Hudson · 22 years ago
  75. 2412853 Fix escaping of non-ASCII characters. by Martin v. Löwis · 22 years ago
  76. bb9c5f5 PyObject_RichCompareBool() already returns -1, 0, or 1, so return its value by Neal Norwitz · 22 years ago
  77. bd9adab Micro-optimization for list_contains. Factored double if test out of the loop. by Raymond Hettinger · 22 years ago
  78. aae5999 Micro-optimization for list_contains. Factored double if test out of the loop. by Raymond Hettinger · 22 years ago
  79. 5c1ee17 Change the unicode.translate docstring to document that by Walter Dörwald · 22 years ago
  80. efae886 In doc strings, use 'k in D' rather than D.has_key(k). by Guido van Rossum · 22 years ago
  81. d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
  82. 8709a42 Check whether a string resize is necessary at the end by Walter Dörwald · 22 years ago
  83. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  84. 29a6d44 Added comparison functions to dict proxies. by Raymond Hettinger · 22 years ago
  85. d94c28e SF #561244: micro optimizations, builtins cannot be NULL, so use Py_INCREF by Neal Norwitz · 22 years ago
  86. 604cd6a complex() was the only numeric constructor that created a new instance by Raymond Hettinger · 22 years ago
  87. bf935fd string_contains(): speed up by avoiding function calls where by Guido van Rossum · 22 years ago
  88. 6248f44 Speedup for PyObject_IsTrue(): check for True and False first. by Guido van Rossum · 22 years ago
  89. 81912d4 Speedup for PyObject_RichCompareBool(): PyObject_RichCompare() almost by Guido van Rossum · 22 years ago
  90. 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 22 years ago
  91. 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 22 years ago
  92. 0d2d87d long_format(), long_lshift(): Someone on c.l.py is trying to boost by Tim Peters · 22 years ago
  93. 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 22 years ago
  94. 75585d4 getinstclassname(): Squash new compiler wng in assert (comparison of by Tim Peters · 22 years ago
  95. 45ec02a SF patch 576101, by Oren Tirosh: alternative implementation of by Guido van Rossum · 22 years ago
  96. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
  97. 056fbf4 Another modest speedup in PyObject_GenericGetAttr(): inline the call by Guido van Rossum · 22 years ago
  98. 492b46f Make PyDescr_IsData() a macro. It's too simple to be a function. by Guido van Rossum · 22 years ago
  99. 69734a5 Check in my ultra-shortlived patch #597220. by Michael W. Hudson · 22 years ago
  100. c66ff44 Inline call to _PyObject_GetDictPtr() in PyObject_GenericGetAttr(). by Guido van Rossum · 22 years ago