1. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  2. cf940c7 Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and bytearray implementations. by Mark Dickinson · 14 years ago
  3. 331ea92 Issue #9425: create Py_UNICODE_strrchr() function by Victor Stinner · 14 years ago
  4. f2de1ff spelling mistake. by Senthil Kumaran · 14 years ago
  5. 77210b4 Fix Issue5416 - explain negative value for count in bytes object replace. by Senthil Kumaran · 14 years ago
  6. eb6f3ea Fix #8530: Prevent stringlib fastsearch from reading beyond the front of an array. by Florent Xicluna · 14 years ago
  7. 1b66996 Fix nit (sentinel on lhs of comparison). by Raymond Hettinger · 14 years ago
  8. 7e3b948 Issue #9530: Fix a couple of places where undefined behaviour can by Mark Dickinson · 14 years ago
  9. e6fc740 In PySlice_IndicesEx, clip the step to [-PY_SSIZE_T_MAX, PY_SSIZE_T_MAX] rather than [PY_SSIZE_T_MIN, PY_SSIZE_T_MAX]. by Mark Dickinson · 14 years ago
  10. 38bf2cc Issue8757: Implicit set-to-frozenset conversion not thread-safe. by Raymond Hettinger · 14 years ago
  11. 388122d Issue #9337: Make float.__str__ identical to float.__repr__. by Mark Dickinson · 14 years ago
  12. 78eef3de Revert r83395, it introduces test failures and is not necessary anyway since we now have to nul-terminate the string anyway. by Georg Brandl · 14 years ago
  13. 5b65df7 Issue #9416: Fix some issues with complex formatting where the by Mark Dickinson · 14 years ago
  14. bd534f0 #8821: do not rely on Unicode strings being terminated with a \u0000, rather explicitly check range before looking for a second surrogate character. by Georg Brandl · 14 years ago
  15. 8ee604b Use Py_CLEAR(). by Georg Brandl · 14 years ago
  16. c47bd4a Issue #9294: remove dead code in Objects/object.c. Patch by Grant Limberg. by Antoine Pitrou · 14 years ago
  17. 20f9c3c revert unintended changes by Benjamin Peterson · 14 years ago
  18. 013783c move test_trace.py so as not to conflict with future tests for the trace module by Benjamin Peterson · 14 years ago
  19. 99212f6 Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. by Stefan Krah · 14 years ago
  20. 1ac745b Issue #7616: Fix copying of overlapping memoryview slices with the Intel by Antoine Pitrou · 14 years ago
  21. 3b107f9 remove unneeded error check by Benjamin Peterson · 14 years ago
  22. 10de93a Silence gcc warning. (In function 'bytearray_init': warning: 'value' may be used uninitialized in this function). by Mark Dickinson · 14 years ago
  23. d02441e fix repr of complicated structseqs #9206 by Benjamin Peterson · 14 years ago
  24. ccabcd4 make struct sequences subclass tuple; kill lots of code by Benjamin Peterson · 14 years ago
  25. 21a1f73 Style nit. by Mark Dickinson · 14 years ago
  26. a7465e2 cleanup basicsize logic #3268 by Benjamin Peterson · 14 years ago
  27. e51ee8a Fix the docstrings of the capitalize method. by Senthil Kumaran · 14 years ago
  28. 9bf2b3a Update comment about surrogates. by Ezio Melotti · 14 years ago
  29. 5d47083 Merged revisions 82447 via svnmerge from by Benjamin Peterson · 14 years ago
  30. 57221d0 Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. by Ezio Melotti · 14 years ago
  31. e893af5 update error message by Benjamin Peterson · 14 years ago
  32. 9396483 Merged revisions 82317 via svnmerge from by Benjamin Peterson · 14 years ago
  33. 3e5cd1d Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge from by Benjamin Peterson · 14 years ago
  34. d19052c Issue #9089: Remove references to intobject.c and intobject.h from comments. by Mark Dickinson · 14 years ago
  35. 952867a #9078: fix some Unicode C API descriptions, in comments and docs. by Georg Brandl · 14 years ago
  36. c1897e7 Merged revisions 82248 via svnmerge from by Ezio Melotti · 14 years ago
  37. 285a689 Merged revisions 82157 via svnmerge from by Benjamin Peterson · 14 years ago
  38. 554f3f0 Issue #850997: mbcs encoding (Windows only) handles errors argument: strict by Victor Stinner · 14 years ago
  39. 7db923c Silence 'unused variable' gcc warning. Patch by Éric Araujo. by Mark Dickinson · 14 years ago
  40. 313a120 Issue #8969: On Windows, use mbcs codec in strict mode to encode and decode by Victor Stinner · 14 years ago
  41. cc0cfd3 Merged revisions 81907 via svnmerge from by Antoine Pitrou · 14 years ago
  42. 37296e8 Fix r81869: ISO-8859-15 was seen as an alias to ISO-8859-1 by Victor Stinner · 14 years ago
  43. 600d3be Issue #8922: Normalize the encoding name in PyUnicode_AsEncodedString() to by Victor Stinner · 14 years ago
  44. d118856 Merged revisions 81860 via svnmerge from by Antoine Pitrou · 14 years ago
  45. 504b6e8 Merged revisions 81824 via svnmerge from by Benjamin Peterson · 14 years ago
  46. 59a1b2f Merged revisions 81820 via svnmerge from by Benjamin Peterson · 14 years ago
  47. d240071 Merged revisions 81813 via svnmerge from by Benjamin Peterson · 14 years ago
  48. 7eeb5b5 Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s# by Victor Stinner · 14 years ago
  49. fa68a61 Fix naming inconsistency. by Mark Dickinson · 14 years ago
  50. 6f889ad3 Merged revisions 81712 via svnmerge from by Benjamin Peterson · 14 years ago
  51. c03d757 Merged revisions 81709-81710 via svnmerge from by Benjamin Peterson · 14 years ago
  52. da2cf04 Merged revisions 81706-81707 via svnmerge from by Benjamin Peterson · 14 years ago
  53. f9a5a8e Issue #2844: Make int('42', n) consistently raise ValueError for by Mark Dickinson · 14 years ago
  54. 7f1bf80 Issue #8817: Expose round-to-nearest variant of divmod in _PyLong_Divmod_Near by Mark Dickinson · 14 years ago
  55. dc787d2 Issue #8188: Introduce a new scheme for computing hashes of numbers by Mark Dickinson · 14 years ago
  56. fff532b Issue #8749: remove unused code in Objects/object.c. Thanks Yaniv Aknin. by Mark Dickinson · 14 years ago
  57. cc6a982 Issue #8748: Fix two issues with comparisons between complex and integer by Mark Dickinson · 14 years ago
  58. ba644a6 Ooops, add missing ";" in my previous commit (r81324, typeobject.c) by Victor Stinner · 14 years ago
  59. e5f99f3 Issue #6697: Check that _PyUnicode_AsString() result is not NULL in typeobject by Victor Stinner · 14 years ago
  60. f3f22a2 Issue #6697: Fix a crash if a module attribute name contains a surrogate by Victor Stinner · 14 years ago
  61. ba6b430 Fix refleak in internal_print() introduced by myself in r81251 by Victor Stinner · 14 years ago
  62. 372ac5e PyObject_Dump() encodes unicode objects to utf8 with backslashreplace (instead by Victor Stinner · 14 years ago
  63. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  64. 59e62db Enable shortcuts for common encodings in PyUnicode_AsEncodedString() for any by Victor Stinner · 14 years ago
  65. cdd01d2 Merged revisions 81037 via svnmerge from by Mark Dickinson · 14 years ago
  66. 22b2018 Merged revisions 81036 via svnmerge from by Mark Dickinson · 14 years ago
  67. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  68. e97ecba Merged revisions 80961 via svnmerge from by Mark Dickinson · 14 years ago
  69. 8124feb module_repr(): use %U to format the file name by Victor Stinner · 14 years ago
  70. e3c7381 code_repr(): use %U to format the filename by Victor Stinner · 14 years ago
  71. 3937083 Make (most of) Python's tests pass under Thread Sanitizer. by Jeffrey Yasskin · 14 years ago
  72. 0964ee1 PyFile_FromFd() uses PyUnicode_DecodeFSDefault() instead of by Victor Stinner · 14 years ago
  73. b9a20ad PyUnicode_DecodeFSDefaultAndSize() uses surrogateescape error handler by Victor Stinner · 14 years ago
  74. 0ea2a46 Simplify PyUnicode_FSConverter(): remove reference to PyByteArray by Victor Stinner · 14 years ago
  75. 6237daf Don't decode/recode the unicode filename in SyntaxError_str() by Victor Stinner · 14 years ago
  76. a23831f condense condition by Benjamin Peterson · 14 years ago
  77. fb88636 prevent the dict constructor from accepting non-string keyword args #8419 by Benjamin Peterson · 14 years ago
  78. 445a623 Fix my previous commit (r80382) for wide build (unicodeobject.c) by Victor Stinner · 14 years ago
  79. 31be90b Issue #8092: Fix PyUnicode_EncodeUTF8() to support error handler producing by Victor Stinner · 14 years ago
  80. dcb2403 Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, by Victor Stinner · 14 years ago
  81. 3fb156c Issue 8436: set.__init__ accepts keyword args by Raymond Hettinger · 14 years ago
  82. f88db8d Issue 8420: Fix ref counting problem in set_repr(). by Raymond Hettinger · 14 years ago
  83. 9c0e94f Merged revisions 80129 via svnmerge from by Benjamin Peterson · 14 years ago
  84. 8380dd5 Merged revisions 80126 via svnmerge from by Benjamin Peterson · 14 years ago
  85. 0091e5e Merged revisions 79885 via svnmerge from by Stefan Krah · 14 years ago
  86. 49a519c Merged revisions 79856 via svnmerge from by Mark Dickinson · 14 years ago
  87. 3318d29 Merged revisions 79843-79844 via svnmerge from by Mark Dickinson · 14 years ago
  88. 1472150 Merged revisions 79809 via svnmerge from by Mark Dickinson · 14 years ago
  89. 5daab45 Merged revisions 79804 via svnmerge from by Mark Dickinson · 14 years ago
  90. 806d8cf Merged revisions 79494,79496 via svnmerge from by Florent Xicluna · 14 years ago
  91. 808fc0a Merged revisions 79278,79280 via svnmerge from by Victor Stinner · 15 years ago
  92. faa663f Fixed a failure in test_bigmem. by Florent Xicluna · 15 years ago
  93. 4310652 Remove out-of-date comment about making ints and longs hash equal. by Mark Dickinson · 15 years ago
  94. f1789de Revert Unicode UCD 5.2 upgrade in 3.x. It broke repr() for unicode objects, and gave failures in test_bigmem. Revert 79062, 79065 and 79083. by Florent Xicluna · 15 years ago
  95. 4222e9c Merged revisions 79060 via svnmerge from by Collin Winter · 15 years ago
  96. 657de43 Merged revisions 79059 via svnmerge from by Florent Xicluna · 15 years ago
  97. 68f5217 * Fix the refcount leak in _PySequence_BytesToCharpArray from r78946. by Gregory P. Smith · 15 years ago
  98. fb94c5f * Replaces the internals of the subprocess module from fork through exec on by Gregory P. Smith · 15 years ago
  99. d59b416 Issue #8014: Fix PyLong_As<c-integer-type> methods not to produce an by Mark Dickinson · 15 years ago
  100. f673f0c Issue #7845: Make 1j.__le__(2j) return NotImplemented rather than raising TypeError. by Mark Dickinson · 15 years ago