1. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  2. 3607e3d (Merge 3.2) main() now displays an error message before exiting if a command by Victor Stinner · 13 years ago
  3. 94ba691 main() now displays an error message before exiting if a command line argument by Victor Stinner · 13 years ago
  4. 6ec29e2 Issue #8373: The filesystem path of AF_UNIX sockets now uses the filesystem by Antoine Pitrou · 13 years ago
  5. ab0e9f7 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  6. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  7. 093ce9c Issue #6695: Full garbage collection runs now clear the freelist of set objects. by Antoine Pitrou · 13 years ago
  8. 10db4de Issue #4028: Make multiprocessing build on SunOS. by Charles-François Natali · 13 years ago
  9. a23d65c Merge 3.2 by Alexandre Vassalotti · 13 years ago
  10. 3bfc65a Issue #13505: Make pickling of bytes object compatible with Python 2. by Alexandre Vassalotti · 13 years ago
  11. aa6c1d2 Issue #13575: there is only one class type. by Florent Xicluna · 13 years ago
  12. 2122cf7 alias resource.error to OSError by Benjamin Peterson · 13 years ago
  13. 720682e Merge 3.2 by Florent Xicluna · 13 years ago
  14. 0e686cb Fix docstring typo. by Florent Xicluna · 13 years ago
  15. e3b4715 Write tests for invalid characters (U+00110000) by Victor Stinner · 13 years ago
  16. db62389 (Merge 3.2) Issue #5905: time.strftime() is now using the locale encoding, by Victor Stinner · 13 years ago
  17. 720f34a Issue #5905: time.strftime() is now using the locale encoding, instead of by Victor Stinner · 13 years ago
  18. b37b174 Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) by Victor Stinner · 13 years ago
  19. 08b523a MultibyteCodec_Decode() catchs PyUnicode_AS_UNICODE() failures by Victor Stinner · 13 years ago
  20. 59bb0e0 Credit Per Øyvind Karlsen for the initial implementation of the lzma module (issue #6715). by Nadeem Vawda · 13 years ago
  21. 3ff069e Issue #6715: Add module for compression using the LZMA algorithm. by Nadeem Vawda · 13 years ago
  22. 0fdfceb Issue #12567: The curses module uses Unicode functions for Unicode arguments by Victor Stinner · 13 years ago
  23. 984890f Close #13415: Test in configure if unsetenv() has a return value or not. by Victor Stinner · 13 years ago
  24. e8eb0e8 merge 3.2 by Benjamin Peterson · 13 years ago
  25. 4bb867d plug refleak by Benjamin Peterson · 13 years ago
  26. bc53032 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 13 years ago
  27. 116d6b9 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 13 years ago
  28. 6517095 (Merge 3.2) Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
  29. 60b385e Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
  30. 63ab875 Remove "#ifdef Py_UNICODE_WIDE": Python is now always wide by Victor Stinner · 13 years ago
  31. f8facac Fix compiler warnings by Victor Stinner · 13 years ago
  32. 9d3b93b Use the new Unicode API by Victor Stinner · 13 years ago
  33. ab1d16b Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  34. 42bf775 Rewrite PyUnicode_EncodeDecimal() to use the new Unicode API by Victor Stinner · 13 years ago
  35. 6dd381e Issue #12328: Under Windows, refactor handling of Ctrl-C events and by Antoine Pitrou · 13 years ago
  36. 7fe601c Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
  37. 58fcf9f Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
  38. ce0e7da Remove temporary hacks for the issue #13441 by Victor Stinner · 13 years ago
  39. a697b37 Another temporary hack to debug the issue #13441 by Victor Stinner · 13 years ago
  40. da29cc3 Issue #13441: _PyUnicode_CheckConsistency() dumps the string if the maximum by Victor Stinner · 13 years ago
  41. 4eea849 CJK codecs checks for conversion to Py_UNICODE* failures by Victor Stinner · 13 years ago
  42. 9a80fab MultibyteCodec_Encode() checks if PyUnicode_AS_UNICODE() failed by Victor Stinner · 13 years ago
  43. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  44. ea90e0f ctypes check for PyUnicode_GET_SIZE() failure by Victor Stinner · 13 years ago
  45. 8ef1887 test_widechar() uses the new Unicode API by Victor Stinner · 13 years ago
  46. 3335447 Check for PyUnicode_AS_UNICODE() failure by Victor Stinner · 13 years ago
  47. 2b979bf Use PyUnicode_CompareWithASCIIString() instead of Py_UNICODE_strcmp() to avoid by Victor Stinner · 13 years ago
  48. b96172e Issue #9530: Fix undefined behaviour due to signed overflow in testcapi_long.h. by Mark Dickinson · 13 years ago
  49. e532456 Issue #13393: In TextIOWrapper.read(n), try to read `n` characters as by Antoine Pitrou · 13 years ago
  50. adc417c #13406: fix more deprecation warnings and move the deprecation of unicode-internal earlier in the code. by Ezio Melotti · 13 years ago
  51. 7416897 socket_gethostname() uses a wchar_t* with PyMem_Malloc() to avoid the by Victor Stinner · 13 years ago
  52. f7c5ae2 Issue #13374: Deprecate os.getcwdb() on Windows by Victor Stinner · 13 years ago
  53. 11060a4 #13406: silence deprecation warnings in test_codecs. by Ezio Melotti · 13 years ago
  54. 56a220a Issue #13393: BufferedReader.read1() now asks the full requested size to by Antoine Pitrou · 13 years ago
  55. 1ab6c2d Issue #13374: The Windows bytes API has been deprecated in the os module. Use by Victor Stinner · 13 years ago
  56. 9a812cb Issue #13389: Full garbage collection passes now clear the freelists for by Antoine Pitrou · 13 years ago
  57. d8b9ae6 Issue #6397: Support '/dev/poll' polling objects in select module, under Solaris & derivatives. by Jesus Cea · 13 years ago
  58. 5c398e8 Restore performance of special casings for utf-16 and utf-32 in TextIOWrapper by Antoine Pitrou · 13 years ago
  59. c28e2e5 In text I/O, optimize scanning for new lines with 1-byte unicode chars by Antoine Pitrou · 13 years ago
  60. c1b0bfd Fix memory leak in io.StringIO by Antoine Pitrou · 13 years ago
  61. f72d4ef Plug some (unlikely) refleaks. by Antoine Pitrou · 13 years ago
  62. e41f0de Merge 3.2, fix typos. by Florent Xicluna · 13 years ago
  63. 992d9e0 Fix few typos. by Florent Xicluna · 13 years ago
  64. de20b0b Issue #13149: Speed up append-only StringIO objects. by Antoine Pitrou · 13 years ago
  65. 9f4b1e9 Fix and deprecated the unicode_internal codec by Victor Stinner · 13 years ago
  66. 87a7c82 Fix build on Windows by Victor Stinner · 13 years ago
  67. 10b8cf4 Issue #7777: socket: Add Reliable Datagram Sockets (PF_RDS) support. by Charles-François Natali · 13 years ago
  68. 1db7c13 Port encoders from Py_UNICODE API to unicode object API. by Martin v. Löwis · 13 years ago
  69. df8077e #13379: merge with 3.2. by Ezio Melotti · 13 years ago
  70. 98d2c0a #13379: update Unicode version in unicodedata docstrings and comments. by Ezio Melotti · 13 years ago
  71. 6139c1b Issue #12442: nt._getdiskusage() is now using the Windows Unicode API by Victor Stinner · 13 years ago
  72. d03a491 Commit 59dca1e2363d for issue #13327 introduced a compilation warning by Jesus Cea · 13 years ago
  73. 569b494 Fix #13327. utimensat now has the atime and mtime arguments set as optional, by Brian Curtin · 13 years ago
  74. 7ef53ef Forgot to apply the futimesat change. by Brian Curtin · 13 years ago
  75. c1b65d1 Fix 13327. Remove explicit None arguments from futimes, futimens, futimesat, by Brian Curtin · 13 years ago
  76. b0d5b5d Adjust None handling to be a bit more clean. Thanks to Benjamin by Brian Curtin · 13 years ago
  77. 52fbea1 Fix #13327. Remove the need for an explicit None as the second argument to by Brian Curtin · 13 years ago
  78. 864741b Issue #13350: Replace most usages of PyUnicode_Format by PyUnicode_FromFormat. by Amaury Forgeot d'Arc · 13 years ago
  79. 3d7acb0 Issue #12342: Fix compilation on Mac OS X by Victor Stinner · 13 years ago
  80. ab1078b (Merge 3.2) Issue #13339. by Ross Lagerwall · 13 years ago
  81. dcfde5a Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. by Ross Lagerwall · 13 years ago
  82. 6777e6f (Merge 3.2) Issue #12342: Improve _tkinter error message on unencodable character by Victor Stinner · 13 years ago
  83. 7ab4192 Issue #12342: Improve _tkinter error message on unencodable character by Victor Stinner · 13 years ago
  84. 65f51bb (Merge 3.2) Issue #10570: curses.putp() is now expecting a byte string, instead by Victor Stinner · 13 years ago
  85. b3bc7e7 Issue #10570: curses.putp() is now expecting a byte string, instead of a by Victor Stinner · 13 years ago
  86. df5bccc (Merge 3.2) Issue #10570: curses.tigetstr() is now expecting a byte string, by Victor Stinner · 13 years ago
  87. 2662133 Issue #10570: curses.tigetstr() is now expecting a byte string, instead of a by Victor Stinner · 13 years ago
  88. 23e1ecb Issue #13324: fcntlmodule: Add the F_NOCACHE flag. Patch by Alex Stewart. by Charles-François Natali · 13 years ago
  89. 23e275b Port UCS1 and charmap codecs to new API. by Martin v. Löwis · 13 years ago
  90. 91d5193 Closes #2892: preserve iterparse events in case of SyntaxError. by Florent Xicluna · 13 years ago
  91. 5f4f4c5 Replace Py_UNICODE_strchr with PyUnicode_FindChar. by Martin v. Löwis · 13 years ago
  92. f24e7e6 Merge 3.2: issue #2892 by Florent Xicluna · 13 years ago
  93. c45fb25 Issue #13255: wrong docstrings in array module. by Florent Xicluna · 13 years ago
  94. 202a3c4 3.2 - Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c by Senthil Kumaran · 13 years ago
  95. 8d91d45 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  96. 767046a Replace {Get,Set,Has}AttrString with *AttrId. by Martin v. Löwis · 13 years ago
  97. 59142db Issue #12797: Added custom opener parameter to builtin open() and FileIO.open(). by Ross Lagerwall · 13 years ago
  98. 5156f2c Drop unused variable. by Martin v. Löwis · 13 years ago
  99. cfa6129 Fix typo. by Martin v. Löwis · 13 years ago
  100. a72e78b Replace Py_UCS4_ API with Unicode API. by Martin v. Löwis · 13 years ago