1. 63ab875 Remove "#ifdef Py_UNICODE_WIDE": Python is now always wide by Victor Stinner · 13 years ago
  2. 0d3721d Issue #13441: Disable temporary the check on the maximum character until by Victor Stinner · 13 years ago
  3. f8facac Fix compiler warnings by Victor Stinner · 13 years ago
  4. 9d3b93b Use the new Unicode API by Victor Stinner · 13 years ago
  5. b84d723 (Merge 3.2) Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  6. cfed46e PyUnicode_FromKindAndData() fails with a ValueError if size < 0 by Victor Stinner · 13 years ago
  7. 4288520 UTF-8 decoder: set consumed value in the latin1 fast-path by Victor Stinner · 13 years ago
  8. d3df8ab Replace _PyUnicode_READY_REPLACE() and _PyUnicode_ReadyReplace() with unicode_ready() by Victor Stinner · 13 years ago
  9. c814a38 Add a test on str.__getnewargs__() by Victor Stinner · 13 years ago
  10. f012450 Rewrite PyUnicode_TransformDecimalToASCII() to use the new Unicode API by Victor Stinner · 13 years ago
  11. 2d718f3 Remove an unused variable from PyUnicode_Copy() by Victor Stinner · 13 years ago
  12. 87af4f2 Simplify PyUnicode_Copy() by Victor Stinner · 13 years ago
  13. 5bbe5e7 Fix a compiler warning in _PyUnicode_CheckConsistency() by Victor Stinner · 13 years ago
  14. 42bf775 Rewrite PyUnicode_EncodeDecimal() to use the new Unicode API by Victor Stinner · 13 years ago
  15. 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
  16. ce4a9da Issue #13411: memoryview objects are now hashable when the underlying object is hashable. by Antoine Pitrou · 13 years ago
  17. 0a3229d Issue #13417: speed up utf-8 decoding by around 2x for the non-fully-ASCII case. by Antoine Pitrou · 13 years ago
  18. 7fe601c Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
  19. 58fcf9f Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
  20. 41dde32 Issue #13441: Reenable strxfrm() tests on Solaris by Victor Stinner · 13 years ago
  21. ce0e7da Remove temporary hacks for the issue #13441 by Victor Stinner · 13 years ago
  22. a697b37 Another temporary hack to debug the issue #13441 by Victor Stinner · 13 years ago
  23. da29cc3 Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximum by Victor Stinner · 13 years ago
  24. a996f1e What's new in Python 3.3: Rephrase PEP 393 doc by Victor Stinner · 13 years ago
  25. be49244 winreg module avoids the deprecated Unicode API by Victor Stinner · 13 years ago
  26. 0293db6 Issue #13441: Disable temporary localeconv() tests on Solaris by Victor Stinner · 13 years ago
  27. 4eea849 CJK codecs checks for conversion to Py_UNICODE* failures by Victor Stinner · 13 years ago
  28. 9a80fab MultibyteCodec_Encode() checks if PyUnicode_AS_UNICODE() failed by Victor Stinner · 13 years ago
  29. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  30. f3ae620 PyUnicode_GET_SIZE() checks that PyUnicode_AsUnicode() succeed by Victor Stinner · 13 years ago
  31. dcbbd9e Fix a typo in PC/_subprocess.c by Victor Stinner · 13 years ago
  32. ea90e0f ctypes check for PyUnicode_GET_SIZE() failure by Victor Stinner · 13 years ago
  33. 8ef1887 test_widechar() uses the new Unicode API by Victor Stinner · 13 years ago
  34. 3335447 Check for PyUnicode_AS_UNICODE() failure by Victor Stinner · 13 years ago
  35. 53b33e7 UnicodeTranslateError uses the new Unicode API by Victor Stinner · 13 years ago
  36. a1c03b0 Issue #13441: Disable temporary strxfrm() tests on Solaris by Victor Stinner · 13 years ago
  37. 242b6ea (Merge 3.2) Close #13401: Skip TestFileTypeW of test_argparse if the current user is root by Victor Stinner · 13 years ago
  38. a04b39b Close #13401: Skip TestFileTypeW of test_argparse if the current user is root by Victor Stinner · 13 years ago
  39. da1ddf3 UnicodeEncodeError uses the new Unicode API by Victor Stinner · 13 years ago
  40. 4ead7c7 PyObject_Str() ensures that the result string is ready by Victor Stinner · 13 years ago
  41. 2b979bf Use PyUnicode_CompareWithASCIIString() instead of Py_UNICODE_strcmp() to avoid by Victor Stinner · 13 years ago
  42. 0fc3519 stringlib: remove unused STRINGLIB_FILL by Victor Stinner · 13 years ago
  43. e251d6d print_exception() uses PyUnicode_GetLength() instead of PyUnicode_GetSize() by Victor Stinner · 13 years ago
  44. b960b34 PyUnicode_AsUTF32String() calls directly _PyUnicode_EncodeUTF32(), by Victor Stinner · 13 years ago
  45. 77faf69 _PyUnicode_CheckConsistency() also checks maxchar maximum value, by Victor Stinner · 13 years ago
  46. d5c4022 Remove the two ugly and unused WRITE_ASCII_OR_WSTR and WRITE_WSTR macros by Victor Stinner · 13 years ago
  47. 2e9cfad Reuse surrogate macros in UTF-16 decoder by Victor Stinner · 13 years ago
  48. 9343999 Fix PyUnicode_CopyCharacters() doc by Victor Stinner · 13 years ago
  49. ae4f7c8 charmap_encoding_error() uses the new Unicode API by Victor Stinner · 13 years ago
  50. 7c8bbbb Ensure that Py_UCS4 is 32 bits and Py_UCS2 is 16 bits by Victor Stinner · 13 years ago
  51. 46606ce Document new and deprecated Unicode functions by Victor Stinner · 13 years ago
  52. b4938aa Document PyUnicode_WCHAR_KIND by Victor Stinner · 13 years ago
  53. ac931b1 Use PyUnicode_EncodeCodePage() instead of PyUnicode_EncodeMBCS() with by Victor Stinner · 13 years ago
  54. 2216899 charmap encoders uses Py_UCS4, not Py_UNICODE by Victor Stinner · 13 years ago
  55. 54e26c0 Update list of trove classifiers by Éric Araujo · 13 years ago
  56. aadc519 Merge branch 3.2 (closes #13338) by Petri Lehtinen · 13 years ago
  57. 8d40f16 Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDER by Petri Lehtinen · 13 years ago
  58. b96172e Issue #9530: Fix undefined behaviour due to signed overflow in testcapi_long.h. by Mark Dickinson · 13 years ago
  59. 895d181 Issue #12245 merge. by Mark Dickinson · 13 years ago
  60. b1e58fe Issue #12245: Document sys.float_info.rounds better. by Mark Dickinson · 13 years ago
  61. e6eabd4 Issue #13215: multiprocessing.Connection: don't hammer the remote end with by Charles-François Natali · 13 years ago
  62. e532456 Issue #13393: In TextIOWrapper.read(n), try to read `n` characters as by Antoine Pitrou · 13 years ago
  63. f34a0cd Issue #10227: Add an allocation cache for a single slice object. by Antoine Pitrou · 13 years ago
  64. 2251a3d #13387: merge with 3.2. by Ezio Melotti · 13 years ago
  65. fabf027 #13387: add note about checking the exact type in assertIsInstance doc. by Ezio Melotti · 13 years ago
  66. 4a7abe7 #11112: merge with 3.2. by Ezio Melotti · 13 years ago
  67. 7f78ddc #11112: Fix typo in a base class in test_socket. by Ezio Melotti · 13 years ago
  68. 304261e #13358: merge with 3.2. by Ezio Melotti · 13 years ago
  69. 15cb489 #13358: HTMLParser now calls handle_data only once for each CDATA. by Ezio Melotti · 13 years ago
  70. def4728 #4147: merge with 3.2. by Ezio Melotti · 13 years ago
  71. 8008f2a #4147: minidom's toprettyxml no longer adds whitespace around a text node when it is the only child of an element. Initial patch by Dan Kenigsberg. by Ezio Melotti · 13 years ago
  72. 4d5d4e2 #13426: merge with 3.2. by Ezio Melotti · 13 years ago
  73. e62aad3 #13426: fix typos in pickle doc. by Ezio Melotti · 13 years ago
  74. adc417c #13406: fix more deprecation warnings and move the deprecation of unicode-internal earlier in the code. by Ezio Melotti · 13 years ago
  75. 5a8bc6f Add a couple other whatsnew items by Antoine Pitrou · 13 years ago
  76. 2c0a967 Add various items in whatsnew by Antoine Pitrou · 13 years ago
  77. 45b3ad4 Remove XXX, as the functions and macros are mentioned in the porting section by Antoine Pitrou · 13 years ago
  78. beb7836 Explain concrete (resource consumption) effects of PEP 393 a bit. by Antoine Pitrou · 13 years ago
  79. d136aec Be a bit less shy by Antoine Pitrou · 13 years ago
  80. 7416897 socket_gethostname() uses a wchar_t* with PyMem_Malloc() to avoid the by Victor Stinner · 13 years ago
  81. ee587ea Catch PyUnicode_AS_UNICODE() errors in fileutils.c by Victor Stinner · 13 years ago
  82. 1f79517 Catch PyUnicode_AS_UNICODE() errors by Victor Stinner · 13 years ago
  83. 6f9568b Fix misused of "PyUnicodeObject" structure name in unicodeobject.h by Victor Stinner · 13 years ago
  84. f7c5ae2 Issue #13374: Deprecate os.getcwdb() on Windows by Victor Stinner · 13 years ago
  85. 345379a #13406: correct the error message in check_warnings too. by Ezio Melotti · 13 years ago
  86. 11060a4 #13406: silence deprecation warnings in test_codecs. by Ezio Melotti · 13 years ago
  87. 27c2a86 fixing typos in optparse doc by Eli Bendersky · 13 years ago
  88. eeae149 fixing typos in optparse doc by Eli Bendersky · 13 years ago
  89. 56a220a Issue #13393: BufferedReader.read1() now asks the full requested size to by Antoine Pitrou · 13 years ago
  90. 2821644 Issue #13374: Skip deprecation tests for os.symlink() on Windows XP by Victor Stinner · 13 years ago
  91. 19bd069 What's New in 3.3: Add a "Deprecated ..." section by Victor Stinner · 13 years ago
  92. 040e16e "unicode_internal" codec has been deprecated: fix related tests by Victor Stinner · 13 years ago
  93. 8ab440e Merge by Antoine Pitrou · 13 years ago
  94. 1ab6c2d Issue #13374: The Windows bytes API has been deprecated in the os module. Use by Victor Stinner · 13 years ago
  95. 8ad982c Use PyUnicode_FromFormat() to create the temporary file name. by Antoine Pitrou · 13 years ago
  96. 6166519 Closes #13297: use bytes type to send and receive binary data through XMLRPC. by Florent Xicluna · 13 years ago
  97. 1d8f3f4 Fix regression under Windows following b75b41237380 (from issue #13392) by Antoine Pitrou · 13 years ago
  98. 28e401e Issue #13392: Writing a pyc file should now be atomic under Windows as well. by Antoine Pitrou · 13 years ago
  99. 5f7f615 Merge 3.2 by Éric Araujo · 13 years ago
  100. ca88e9c Branch merge by Éric Araujo · 13 years ago