1. 27b1ca2 Issue #16416: On Mac OS X, operating system data are now always by Victor Stinner · 12 years ago
  2. c431128 initialize more global type objects (closes #16369) by Benjamin Peterson · 12 years ago
  3. fb90c09 Issue #14700: Fix buggy overflow checks for large precision and width in new-style and old-style formatting. by Mark Dickinson · 12 years ago
  4. 83fe2e1 Issue #14783: Improve int() docstring and also str(), range(), and slice(). by Chris Jerdonek · 12 years ago
  5. 6f80f5d Issue #15379: Fix passing of non-BMP characters as integers for the charmap decoder (already working as unicode strings). by Antoine Pitrou · 12 years ago
  6. 28a6cfa use the stricter PyMapping_Check (closes #15801) by Benjamin Peterson · 12 years ago
  7. 573b1fd Fix str docstring by Nick Coghlan · 12 years ago
  8. b4bbee2 Issue #14579: Fix CVE-2012-2135: vulnerability in the utf-16 decoder after error handling. by Antoine Pitrou · 12 years ago
  9. ca819c3 merge 3.1 (#14509) by Benjamin Peterson · 12 years ago
  10. f6622c8 fix build without Py_DEBUG and DNDEBUG (closes #14509) by Benjamin Peterson · 12 years ago
  11. a8755c5 kill this terribly outdated comment by Benjamin Peterson · 12 years ago
  12. e249dca merge 3.2 by Benjamin Peterson · 12 years ago
  13. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 12 years ago
  14. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  15. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  16. cbe0134 Issue #13913: normalize utf-8 codec name in UTF-8 decoder by Victor Stinner · 12 years ago
  17. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 12 years ago
  18. 63e6c32 Consolidate the occurrances of the prime used as the multiplier when hashing by Gregory P. Smith · 13 years ago
  19. 53aa1d7 fix possible if unlikely leak by Benjamin Peterson · 13 years ago
  20. ab1d16b Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  21. 5418ee0 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 13 years ago
  22. d88d983 Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character by Victor Stinner · 13 years ago
  23. 93e7afc #9200: The str.is* methods now work with strings that contain non-BMP characters even in narrow Unicode builds. by Ezio Melotti · 13 years ago
  24. 7a6b44a the named of the character is actually NUL by Benjamin Peterson · 13 years ago
  25. 5ad517a NUL -> NULL by Benjamin Peterson · 13 years ago
  26. ee8d998 #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters. by Ezio Melotti · 13 years ago
  27. f413b80 in narrow builds, make sure to test codepoints as identifier characters (closes #12732) by Benjamin Peterson · 13 years ago
  28. 53516a8 Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  29. 9ebe08d Fix closes issue12471 - wrong TypeError message when '%i' format spec was used. by Senthil Kumaran · 13 years ago
  30. 3cbf14b Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 13 years ago
  31. f2b3f78 #6780: merge with 3.1. by Ezio Melotti · 13 years ago
  32. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  33. 6159ee3 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  34. ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  35. 2b574a2 Merged revisions 88697 via svnmerge from by Victor Stinner · 13 years ago
  36. 659eb84 Merged revisions 88481 via svnmerge from by Victor Stinner · 13 years ago
  37. b9cc00c Removed unneeded #include by Alexander Belopolsky · 14 years ago
  38. 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
  39. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  40. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  41. 3b9406b Remove redundant check for PyBytes in unicode_encode. by Georg Brandl · 14 years ago
  42. 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 14 years ago
  43. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  44. d5af0a5 PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() fails by Victor Stinner · 14 years ago
  45. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  46. c911bbf str, bytes, bytearray docstring: remove unnecessary [...] by Victor Stinner · 14 years ago
  47. e14e212 Fix encode/decode method doc of str, bytes, bytearray types by Victor Stinner · 14 years ago
  48. 16562f4 Merged revisions 86277 via svnmerge from by Eric Smith · 14 years ago
  49. 51d2fd9 Added more to docstrings for str.format, format_map, and __format__. by Eric Smith · 14 years ago
  50. 9696088 Issue #10288: The deprecated family of "char"-handling macros by David Malcolm · 14 years ago
  51. 27bbca6 Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict. by Eric Smith · 14 years ago
  52. ad15872 Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS X by Victor Stinner · 14 years ago
  53. f933e1a Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead of by Victor Stinner · 14 years ago
  54. 9a90900 PyUnicode_FromFormatV(): Fix %A format by Victor Stinner · 14 years ago
  55. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  56. ded5acf Merged revisions 81936 via svnmerge from by Georg Brandl · 14 years ago
  57. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  58. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  59. 66c221e #9418: first step of moving private string methods to _string module. by Georg Brandl · 14 years ago
  60. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  61. 5593d8a Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace by Victor Stinner · 14 years ago
  62. 1c24bd0 Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul character by Victor Stinner · 14 years ago
  63. 71e91a3 Fix PyUnicode_AsWideCharString(): set *size if size is not NULL by Victor Stinner · 14 years ago
  64. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  65. 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 14 years ago
  66. d4ac96a use return NULL; it's just as correct by Benjamin Peterson · 14 years ago
  67. 4c7db31 Issue #9738, #9836: Fix refleak introduced by r84704 by Victor Stinner · 14 years ago
  68. 9be0b2e detect non-ascii characters much earlier (plugs ref leak) by Benjamin Peterson · 14 years ago
  69. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  70. 4640860 Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy() by Victor Stinner · 14 years ago
  71. 71133ff Create PyUnicode_strdup() function by Victor Stinner · 14 years ago
  72. c4eb765 Create Py_UNICODE_strcat() function by Victor Stinner · 14 years ago
  73. 42cb462 Remove unicode_default_encoding constant by Victor Stinner · 14 years ago
  74. fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() by Antoine Pitrou · 14 years ago
  75. a2983c6 Merged revisions 84394 via svnmerge from by Antoine Pitrou · 14 years ago
  76. b0fa831 Issue #7415: PyUnicode_FromEncodedObject() now uses the new buffer API by Antoine Pitrou · 14 years ago
  77. 8515eae Issue 8781: On systems a signed 4-byte wchar_t and a 4-byte Py_UNICODE, use memcpy to convert between the two (as already done when wchar_t is unsigned) by Daniel Stutzbach · 14 years ago
  78. 3119ed7 Fix PyUnicode_EncodeFSDefault() indentation by Victor Stinner · 14 years ago
  79. ef8d95c Issue #9425: Create Py_UNICODE_strncmp() function by Victor Stinner · 14 years ago
  80. 47fcb5b Issue #9542: Create PyUnicode_FSDecoder() function by Victor Stinner · 14 years ago
  81. 4a2b7a1 Issue #9425: Create PyErr_WarnFormat() function by Victor Stinner · 14 years ago
  82. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  83. 331ea92 Issue #9425: create Py_UNICODE_strrchr() function by Victor Stinner · 14 years ago
  84. 1fa11af Merged revisions 83226-83227,83229-83232 via svnmerge from by Georg Brandl · 14 years ago
  85. 0f14709 Recorded merge of revisions 83444 via svnmerge from by Georg Brandl · 14 years ago
  86. 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
  87. a70070c Merged revisions 83395,83417 via svnmerge from by Georg Brandl · 14 years ago
  88. 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
  89. 8ee604b Use Py_CLEAR(). by Georg Brandl · 14 years ago
  90. aebd6f4 Merged revisions 82978 via svnmerge from by Stefan Krah · 14 years ago
  91. 99212f6 Sub-issue of #9036: Fix incorrect use of Py_CHARMASK. by Stefan Krah · 14 years ago
  92. 74ceac2 Merged revisions 82573 via svnmerge from by Senthil Kumaran · 14 years ago
  93. e51ee8a Fix the docstrings of the capitalize method. by Senthil Kumaran · 14 years ago
  94. 25bc019 Merged revisions 82413,82468 via svnmerge from by Ezio Melotti · 14 years ago
  95. 9bf2b3a Update comment about surrogates. by Ezio Melotti · 14 years ago
  96. 57221d0 Update PyUnicode_DecodeUTF8 from RFC 2279 to RFC 3629. by Ezio Melotti · 14 years ago
  97. 952867a #9078: fix some Unicode C API descriptions, in comments and docs. by Georg Brandl · 14 years ago
  98. 415f340 Merged revisions 82252 via svnmerge from by Ezio Melotti · 14 years ago
  99. c1897e7 Merged revisions 82248 via svnmerge from by Ezio Melotti · 14 years ago
  100. 554f3f0 Issue #850997: mbcs encoding (Windows only) handles errors argument: strict by Victor Stinner · 14 years ago