1. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 11 years ago
  2. bb52020 Issue #19512: pickle now uses an identifier to only create the Unicode string by Victor Stinner · 11 years ago
  3. 6853108 Issue #18582: fix memory leak in pbkdf2 code by Christian Heimes · 11 years ago
  4. 357f515 Issue #19437: Fix _threading.RLock constructor (rlock_new), call by Victor Stinner · 11 years ago
  5. 85a12a8 Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, when the row factory by Victor Stinner · 11 years ago
  6. b3e1ef1 Issue #19437: Fix pysqlite_connection_call() of sqlite3, return NULL when by Victor Stinner · 11 years ago
  7. dd4b299 Issue #19437: Fix pysqlite_cursor_iternext() of sqlite3, handle by Victor Stinner · 11 years ago
  8. bd90d09 #18678: Correct names of spwd struct members. by R David Murray · 11 years ago
  9. c3f57e4 Merge #19411: Clarify that b2a_hex/hexlify returns a bytes object. by R David Murray · 11 years ago
  10. 5fdb64b #19411: Clarify that b2a_hex/hexlify returns a bytes object. by R David Murray · 11 years ago
  11. 2be28a6 Silence a compiler warning about an unused function by Brett Cannon · 11 years ago
  12. 6374120 Issue #19418 Fix some warnings on Win64 by Tim Golden · 11 years ago
  13. a9eb38f Issue #19437: Fix newPySSLSocket(), handle PyWeakref_NewRef() failure by Victor Stinner · 11 years ago
  14. e75996a Issue #19437: Fix PyCFuncPtrType constructor, handle by Victor Stinner · 11 years ago
  15. a215002 Issue #19437: Fix PyCArrayType constructor, raise MemoryError on PyMem_Malloc() by Victor Stinner · 11 years ago
  16. ba9be47 Issue #19437: Fix fill_and_set_sslerror() of _ssl, handle Py_BuildValue() by Victor Stinner · 11 years ago
  17. 2ae57e3 Issue #19437: Fix _pickle, don't call _Unpickler_SkipConsumed() with an by Victor Stinner · 11 years ago
  18. b43ad1d cleanup _Unpickler_SkipConsumed(): remove 1 level of indentation by Victor Stinner · 11 years ago
  19. fa6ab0f Issue #19418 Fix some warnings on Win64 by Tim Golden · 11 years ago
  20. 90fb914 asyncio: Make the IOCP proactor support "waitable" handles (Richard Oudkerk). by Guido van Rossum · 11 years ago
  21. 7613542 Issue #19437: Fix select.epoll.poll(), fix code handling PyMem_New() error by Victor Stinner · 11 years ago
  22. f0a7bac Issue #19437: Fix os.statvfs(), handle errors by Victor Stinner · 11 years ago
  23. dc6b933 merge by Christian Heimes · 11 years ago
  24. ee0bac6 Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSSL re-seeding by Christian Heimes · 11 years ago
  25. fb6b44e Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSSL re-seeding by Christian Heimes · 11 years ago
  26. 34f7383 Issue #19437: Fix dec_format() of the _decimal module, handle dec_strdup() by Victor Stinner · 11 years ago
  27. f866f97 Issue #19433: test_capi: check signness of some C types by Victor Stinner · 11 years ago
  28. 0107655 Issue #19433: test_capi: add tests on the size of some C types by Victor Stinner · 11 years ago
  29. f38a5c2 Cleanup locale.localeconv(): move Py_DECREF() closer to the error by Victor Stinner · 11 years ago
  30. 1ce3f84 Issue #19437: Fix convert_op_cmp() of decimal.Decimal rich comparator, handle by Victor Stinner · 11 years ago
  31. 6decccd Issue #19437: Fix Array_subscript() of ctypes, handle Array_item() failure by Victor Stinner · 11 years ago
  32. db816d6 Issue #19420: Fix reference leak in module initalization code of _hashopenssl.c by Christian Heimes · 11 years ago
  33. dd371b9 Issue #18408: Fix PyCStructUnionType_update_stgdict(), handle by Victor Stinner · 11 years ago
  34. 68f6adc Issue #18408: Fix _ctypes_alloc_format_string(), raise MemoryError on memory by Victor Stinner · 11 years ago
  35. cc024d1 Issue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failure by Victor Stinner · 11 years ago
  36. af8b7e8 Issue #18408: Fix zipimport, handle PyUnicode_Substring() and get_subname() failures by Victor Stinner · 11 years ago
  37. 73660af Issue #19428: zipimport now handles errors when reading truncated or invalid by Victor Stinner · 11 years ago
  38. 28c63f7 CJK codecs: less magical macros, semicolon is now explicit by Victor Stinner · 11 years ago
  39. 14c9fea CJK codecs: less magic macros, require explicit semicolon by Victor Stinner · 11 years ago
  40. 146a2ed CJK codecs: add newlines for readability by Victor Stinner · 11 years ago
  41. bd97ac3 CJK codecs: use less magic and more readable macros, write explicit if by Victor Stinner · 11 years ago
  42. 0a6e2c5 CJK codecs: remove unused TRYMAP_ENC_MPLANE macro by Victor Stinner · 11 years ago
  43. 11bdf91 Issue #18509: handle PyUnicode_Writer() error by Victor Stinner · 11 years ago
  44. e6514f5 #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). by Nadeem Vawda · 11 years ago
  45. 3797065 #19395: Raise exception when pickling a (BZ2|LZMA)(Compressor|Decompressor). by Nadeem Vawda · 11 years ago
  46. 81be27d Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSL by Georg Brandl · 11 years ago
  47. efa5a39 Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
  48. 89d8cd9 just return toplevel symbol table rather than all blocks (closes #19393) by Benjamin Peterson · 11 years ago
  49. fb404f5 #19227: merge with 3.3 by Georg Brandl · 11 years ago
  50. 1985f7b Issue #19405: Fixed outdated comments in the _sre module. by Serhiy Storchaka · 11 years ago
  51. 7735366 merge 3.3 (#19393) by Benjamin Peterson · 11 years ago
  52. 8444ebb Issue #18685: Extract template part of _sre.c into separated sre_lib.h file. by Serhiy Storchaka · 11 years ago
  53. 9eabac6 Issue #18685: Restore re performance to pre-PEP 393 levels. by Serhiy Storchaka · 11 years ago
  54. 781bbeb Issue13234 Allow listdir to handle extended paths on Windows (Patch by Santoso Wijaya) by Tim Golden · 11 years ago
  55. 2300508 Issue4905: use INVALID_FILE_ATTRIBUTES where appropriate. (Patch by Ulrich Eckhardt) by Tim Golden · 11 years ago
  56. 4f056d4 Issue #19288: Fixed the "in" operator of dbm.gnu databases for string by Serhiy Storchaka · 11 years ago
  57. 7d6392c Issue #19288: Fixed the "in" operator of dbm.gnu databases for string by Serhiy Storchaka · 11 years ago
  58. 124a0b3 Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string by Serhiy Storchaka · 11 years ago
  59. 9da33ab Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string by Serhiy Storchaka · 11 years ago
  60. 8b150ec Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  61. be80fc9 Issue #19327: Fixed the working of regular expressions with too big charset. by Serhiy Storchaka · 11 years ago
  62. 4d39700 Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers. by Antoine Pitrou · 11 years ago
  63. 09fcb72 Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers. by Antoine Pitrou · 11 years ago
  64. 327dd73 Issue #18742: Expose the internal hash type object for ABCs. by Christian Heimes · 11 years ago
  65. b7bd5df Issue #16595: Add prlimit() to resource module by Christian Heimes · 11 years ago
  66. 6fc79bf Issue #19324: Expose Linux-specific constants in resource module by Christian Heimes · 11 years ago
  67. b7ddbc8 Load SSL's error strings in hashlib. by Christian Heimes · 11 years ago
  68. c20bcde Issue #18527: Upgrade internal copy of zlib to 1.2.8 by Christian Heimes · 11 years ago
  69. c6564b9 Make PKCS5_PBKDF2_HMAC_fast() a static function by Christian Heimes · 11 years ago
  70. 36af10c Issue #17087: Improved the repr for regular expression match objects. by Serhiy Storchaka · 11 years ago
  71. ce82eb2 Issue #12866: Fix bias() for 24-bit. Add more tests. by Serhiy Storchaka · 11 years ago
  72. ebe83f9 fix compile issue on windows. path is now a struct ptr by Christian Heimes · 11 years ago
  73. eaea5e9 Issue #12866: The audioop module now supports 24-bit samples. by Serhiy Storchaka · 11 years ago
  74. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  75. 351f539 Issue #18582: HMAC_CTX_copy() is not available on OpenSSL < 1.0 by Christian Heimes · 11 years ago
  76. e723622 Issue #18582: provide a faster C implementation of pbkdf2_hmac that works with OpenSSL < 1.0 by Christian Heimes · 11 years ago
  77. a412f76 Fix compilation of the curses module (broken by issue #16612). by Serhiy Storchaka · 11 years ago
  78. 3182680 Issue #16612: Add "Argument Clinic", a compile-time preprocessor by Larry Hastings · 11 years ago
  79. baced56 Fix a refleak in _sre by Brett Cannon · 11 years ago
  80. 27b7c7e Initial checkin of asyncio package (== Tulip, == PEP 3156). by Guido van Rossum · 11 years ago
  81. 7d270ee Issue #16129: Add `Py_SetStandardStreamEncoding` by Nick Coghlan · 11 years ago
  82. 2532497 Issue #18468: The re.split, re.findall, and re.sub functions and the group() by Serhiy Storchaka · 11 years ago
  83. 6083a4b Re #18521: remove assignments of variables that are immediately reassigned. by Georg Brandl · 11 years ago
  84. 782952b Re #18521: fix not-quite-C syntax that works only because the PyXXX_Check are macros defined with () around them. by Georg Brandl · 11 years ago
  85. daa1fa9 Back out accidentally pushed changeset b51218966201. by Georg Brandl · 11 years ago
  86. 4300019 Add re.fullmatch() function and regex.fullmatch() method, which anchor the by Georg Brandl · 11 years ago
  87. 9809ca9 Issue #18458: merge comments from 3.3 by Ned Deily · 11 years ago
  88. e92ef13 Issue #18582: Add 'pbkdf2_hmac' to the hashlib module. by Christian Heimes · 11 years ago
  89. 5d4121a Issue #18458: Prevent crashes with newer versions of libedit. Its readline by Ned Deily · 11 years ago
  90. 2582762 Issue #19209: Remove import of copyreg from the os module to speed up by Christian Heimes · 11 years ago
  91. fd4722c Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io module instead of the full locale module. by Antoine Pitrou · 11 years ago
  92. a76795b merge 3.3 by Benjamin Peterson · 11 years ago
  93. 8aa7b89 replace hardcoded version by Benjamin Peterson · 11 years ago
  94. f0a1b87 merge 3.3 by Benjamin Peterson · 11 years ago
  95. 577dd61 make sure the docstring is never out of date wrt unicode data version by Benjamin Peterson · 11 years ago
  96. d3c43a9 merge 3.3 (#19220) by Benjamin Peterson · 11 years ago
  97. a4cf1c8 remove url from docstring (closes #19220) by Benjamin Peterson · 11 years ago
  98. 94d08d9 upgrade unicode db to 6.3.0 (closes #19221) by Benjamin Peterson · 11 years ago
  99. 2fe9bac Close #16742: Fix misuse of memory allocations in PyOS_Readline() by Victor Stinner · 11 years ago
  100. 07573d7 merge by Raymond Hettinger · 11 years ago