1. e57e50c Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. by Ezio Melotti · 15 years ago
  2. 77acee9 Fix comment typo. by Mark Dickinson · 15 years ago
  3. e4b83e0 Issue #8627: Fix "XXX undetected error" from unchecked PyErr_WarnPy3k return. by Mark Dickinson · 15 years ago
  4. 23f0d6b Issue #8627: remove out-of-date warning about overriding __cmp__ by Mark Dickinson · 15 years ago
  5. d5adb5d _PyObject_LookupSpecial returns a new reference by Benjamin Peterson · 15 years ago
  6. 67783b1 fix ref counting by Benjamin Peterson · 15 years ago
  7. 039c585 implement object.__format__ with PyObject_Format by Benjamin Peterson · 15 years ago
  8. 3a2acb5 remove PyType_Ready call; float should be initialized in interpreter startup by Benjamin Peterson · 15 years ago
  9. 2aa6c38 properly lookup the __format__ special method by Benjamin Peterson · 15 years ago
  10. 4ca7c3c Issue #8748: Fix incorrect results from comparisons between an integer by Mark Dickinson · 15 years ago
  11. 4b3035d Remove declaration for unused variable. by Mark Dickinson · 15 years ago
  12. 8133637 Issue #5211: Complete removal of implicit coercions for the complex by Mark Dickinson · 15 years ago
  13. 54d2898 #8635: document enumerate() start parameter in docstring. by Georg Brandl · 15 years ago
  14. 83137c2 Issue #7079: Fix a possible crash when closing a file object while using by Antoine Pitrou · 15 years ago
  15. 43ca377 Wrap multiline macros in a 'do {} while(0)', for safety. by Mark Dickinson · 15 years ago
  16. fda8d11 Post-detabification cleanup: whitespace fixes and long line rewraps only. by Mark Dickinson · 15 years ago
  17. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 15 years ago
  18. 22ff664 Issue #8659: Remove redundant ABS calls. Thanks Daniel Stutzbach. by Mark Dickinson · 15 years ago
  19. a8ac944 Add back in a line that was unneeded which advanced a pointer, but commented by Brett Cannon · 15 years ago
  20. 8a478ce Remove an unneeded assignment. by Brett Cannon · 15 years ago
  21. fee3acb Remove an unneeded variable assignment. by Brett Cannon · 15 years ago
  22. eb3fef5 Remove an unneeded variable. by Brett Cannon · 15 years ago
  23. 6f38175 Remove an unneeded variable increment. by Brett Cannon · 15 years ago
  24. 268e487 Issue #8404: Fix set operations on dictionary views. by Alexandre Vassalotti · 15 years ago
  25. 0d8a859 Pull a NULL pointer check up to cover more cases in the function. by Brett Cannon · 15 years ago
  26. a7f13ee Remove an unneeded variable and assignment. by Brett Cannon · 15 years ago
  27. 328284a Improve error message from nb_int returning a non-integer, in various PyInt_As* functions: by Mark Dickinson · 15 years ago
  28. 35b7602 Issue 8436: set.__init__ accepts keyword args by Raymond Hettinger · 15 years ago
  29. ae530c2 tiny simplification by Benjamin Peterson · 15 years ago
  30. 821a8ea have a clear error when passing something > sys.maxsize to bytearray by Benjamin Peterson · 15 years ago
  31. ef7590e Issue #8328: Silence Visual Studio warnings. by Stefan Krah · 15 years ago
  32. ea7e551 Silence a 'comparison between signed and unsigned integer expressions' gcc warning. by Mark Dickinson · 15 years ago
  33. 3ec9b94 Issue #8259: Get rid of 'outrageous left shift count' error when by Mark Dickinson · 15 years ago
  34. 56506a6 Use a better NaN test in _Py_HashDouble as well. by Mark Dickinson · 15 years ago
  35. 5e0c274 Use a more robust infinity check in _Py_HashDouble. by Mark Dickinson · 15 years ago
  36. 30583e3 Silence a compiler warning. by Raymond Hettinger · 15 years ago
  37. bea424a more _PyString_Resize error checking by Benjamin Peterson · 15 years ago
  38. 6caf7ff always check _PyString_Resize for error by Benjamin Peterson · 15 years ago
  39. d44b2fc Issue 7994: Make object.__format__ with a non-empty format string a PendingDecprecationWarning. Still need to remove uses of this from various tests. by Eric Smith · 15 years ago
  40. 5ac006d Capsule-related changes: by Larry Hastings · 15 years ago
  41. a57df2c Issue #8268: Old-style classes (not just instances) now support weak references. by Antoine Pitrou · 15 years ago
  42. 22b2438 #7643: Unicode codepoints VT (0x0B) and FF (0x0C) are linebreaks according to Unicode Standard Annex #14. by Florent Xicluna · 15 years ago
  43. 402b73f Backported PyCapsule from 3.1, and converted most uses of CObject to PyCapsule. by Larry Hastings · 15 years ago
  44. 95affc4 Issue #1583863: An unicode subclass can now override the __str__ method by Victor Stinner · 15 years ago
  45. 001a395 Add support for weak references to code objects. This will be used by an optimization in the incoming Python 3 JIT. by Collin Winter · 15 years ago
  46. 2e0a53f Issue #8024: Update the Unicode database to 5.2 by Florent Xicluna · 15 years ago
  47. 17d9054 Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. by Victor Stinner · 15 years ago
  48. fb50112 #8030: more docstring fix for builtin types. by Ezio Melotti · 15 years ago
  49. b36e63a The set types can also be called without arguments. by Georg Brandl · 15 years ago
  50. bca1169 #8030: make builtin type docstrings more consistent: use "iterable" instead of "seq(uence)", use "new" to show that set() always returns a new object. by Georg Brandl · 15 years ago
  51. 3212515 #7649: "u'%c' % char" now behaves like "u'%s' % char" and raises a UnicodeDecodeError if 'char' is a byte string that can't be decoded using the default encoding. by Ezio Melotti · 15 years ago
  52. 2d9856d Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to strings. by Eric Smith · 15 years ago
  53. f20f9c2 Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF by Victor Stinner · 15 years ago
  54. 87bcb24 Issue #6902: Fix problem with built-in types format incorrectly with 0 padding. by Eric Smith · 15 years ago
  55. 00b6a5c #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819). by Andrew M. Kuchling · 15 years ago
  56. f32d4ac Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types. by Eric Smith · 15 years ago
  57. bce3e17 #7482: clarify error message in case of division by zero of float and complex numbers. by Ezio Melotti · 15 years ago
  58. 82b34c5 Issue #5211: Fix complex type to avoid implicit calls to by Mark Dickinson · 15 years ago
  59. 2d7911e Silence more compiler warnings; fix an instance of potential undefined behaviour from signed overflow. by Mark Dickinson · 16 years ago
  60. ac5685e Silence some 'comparison between signed and unsigned' compiler warnings. by Mark Dickinson · 16 years ago
  61. bb445a1 Issue #5677: Explicitly forbid write operations on read-only file objects, by Antoine Pitrou · 16 years ago
  62. 526e421 Issue #7385: Fix a crash in `MemoryView_FromObject` when by Antoine Pitrou · 16 years ago
  63. a36507c Issue #7767: Add new C-API function PyLong_AsLongLongAndOverflow, a by Mark Dickinson · 16 years ago
  64. 36ecd67 Issue #7788: Fix a crash produced by deleting a list slice with huge by Mark Dickinson · 16 years ago
  65. 1fafaab #7775: fixed docstring for rpartition by Ezio Melotti · 16 years ago
  66. e80a6a4 Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) by Antoine Pitrou · 16 years ago
  67. aee9003 Add note about usage of STRINGLIB_EMPTY. by Georg Brandl · 16 years ago
  68. d234208 Fixed typo by Ezio Melotti · 16 years ago
  69. 1004292 Sanitize bloom filter macros by Antoine Pitrou · 16 years ago
  70. a913a20 Test commit to try to diagnose failures of the IA-64 buildbot by Antoine Pitrou · 16 years ago
  71. 5c767c2 Fix Windows build (re r77461) by Antoine Pitrou · 16 years ago
  72. 6467213 Issue #7622: Improve the split(), rsplit(), splitlines() and replace() by Antoine Pitrou · 16 years ago
  73. 58a96ef Fixed repr of dictionary views. by Alexandre Vassalotti · 16 years ago
  74. 69eb516 Issue #1967: Backport dictionary views. by Alexandre Vassalotti · 16 years ago
  75. 3694366 factor out __complex__ lookup code to fix another case by Benjamin Peterson · 16 years ago
  76. ecdae19 do correct lookup of the __complex__ method by Benjamin Peterson · 16 years ago
  77. 5b7139a Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, by Antoine Pitrou · 16 years ago
  78. d3e3232 Refactor some longobject internals: PyLong_AsDouble and _PyLong_AsScaledDouble by Mark Dickinson · 16 years ago
  79. 99d652e Issue #7534: Fix handling of nans, infinities, and negative zero in ** by Mark Dickinson · 16 years ago
  80. 4657283 Issue #1811: Improve accuracy and consistency of true division for integers. by Mark Dickinson · 16 years ago
  81. f84caf4 #6108: unicode(exception) and str(exception) should return the same message by Ezio Melotti · 16 years ago
  82. e31d300 Issue #7528: Backport PyLong_AsLongAndOverflow from py3k to trunk. by Mark Dickinson · 16 years ago
  83. 0c0dcaf remove type_compare, since type_richcompare does the same trick by Benjamin Peterson · 16 years ago
  84. 0a0a1a8 Issue #1680159: unicode coercion during an 'in' operation was masking by R. David Murray · 16 years ago
  85. 4895af4 fix the ignoring of __cmp__ method on metaclasses #7491 by Benjamin Peterson · 16 years ago
  86. c169c78 Issue #7466: segmentation fault when the garbage collector is called by Antoine Pitrou · 16 years ago
  87. 5fb8770 substitute PyDict_Check() for PyObject_IsInstance by Benjamin Peterson · 16 years ago
  88. 1691025 Avoid undefined behaviour due to overflow in i_divmod (Objects/intobject.c). by Mark Dickinson · 16 years ago
  89. 91c12eb disable pymalloc tricks with the --with-valgrind option #2422 by Benjamin Peterson · 16 years ago
  90. 3439818 Issue #7406: Fix some occurrences of potential signed overflow in int by Mark Dickinson · 16 years ago
  91. c4ab833 Issue #3382: Make '%F' and float.__format__('F') convert results to upper case. Much of the patch came from Mark Dickinson. by Eric Smith · 16 years ago
  92. 31f0cfe Include ieeefp.h (when available) in pyport.h instead of individually in by Mark Dickinson · 16 years ago
  93. 9dd5e16 Issue #7117, continued: Remove substitution of %g-style formatting for by Mark Dickinson · 16 years ago
  94. 18cfada Remove restriction on precision when formatting floats. This is the by Mark Dickinson · 16 years ago
  95. dc3c239 #5037 proxy __unicode__ correctly by Benjamin Peterson · 16 years ago
  96. 79628d3 Issue 7263: Fix set.intersection() docstring. by Raymond Hettinger · 16 years ago
  97. bd15a06 Issue #7117, continued: Change round implementation to use the correctly-rounded by Mark Dickinson · 16 years ago
  98. 3d6790e Silence another MSVC warning about unary minus. by Mark Dickinson · 16 years ago
  99. b2c3ca1 Silence MSVC warning about unary minus applied to unsigned type. by Mark Dickinson · 16 years ago
  100. 82864d1 Issue #7228: Add '%lld' and '%llu' support to PyFormat_FromString, by Mark Dickinson · 16 years ago