1. 24e4330 * Issue #16113: Remove sha3 module again. by Martin v. Löwis · 11 years ago
  2. 5c86733 Issue #18294: Fix uint_converter() in zlibmodule.c, fix the "> UINT_MAX" check by Victor Stinner · 11 years ago
  3. daeffd2 audioop: adpcm2lin() and lin2adpcm() now raises a TypeError instead of a by Victor Stinner · 11 years ago
  4. e879452 threading.RLock._acquire_restore() now raises a TypeError instead of a by Victor Stinner · 11 years ago
  5. f4c68db (Merge 3.3) parser: fix usage of Py_BuildValue() to build a parser error by Victor Stinner · 11 years ago
  6. 5f8d485 parser: fix usage of Py_BuildValue() to build a parser error by Victor Stinner · 11 years ago
  7. 0e81463 whatsnew for gc.get_stats, plus doc tweaks. by R David Murray · 11 years ago
  8. 266772a merge by Christian Heimes · 11 years ago
  9. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
  10. 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 11 years ago
  11. 36e96b8 (Merge 3.3) Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now by Victor Stinner · 11 years ago
  12. 1e81a39 Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise a by Victor Stinner · 11 years ago
  13. 08263f1 (Merge 3.3) Issue #20026: Fix the sqlite module to handle correctly invalid by Victor Stinner · 11 years ago
  14. cb1f74e Issue #20026: Fix the sqlite module to handle correctly invalid isolation level by Victor Stinner · 11 years ago
  15. cf58fb5 Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and by Serhiy Storchaka · 11 years ago
  16. cac23a5 Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and by Serhiy Storchaka · 11 years ago
  17. f326665 Fix os.listdir(): _Py_dup() already raises an exception on error, no need to by Victor Stinner · 11 years ago
  18. b1792d9 remove trailing spaces. by Gregory P. Smith · 11 years ago
  19. 85c2497 Issue #16404: Add checks for return value of PyLong_FromLong() in by Serhiy Storchaka · 11 years ago
  20. 48d761e Issue #16404: Add checks for return value of PyLong_FromLong() in by Serhiy Storchaka · 11 years ago
  21. 711e27c tracemalloc: fix usage of strtol(), value can be LONG_MIN or LONG_MAX on ERANGE by Victor Stinner · 11 years ago
  22. 4d8c29c tracemalloc: only use unsigned types to compute hash by Victor Stinner · 11 years ago
  23. ae01a8b Merge from 3.3. by Stefan Krah · 11 years ago
  24. 1f1ec12 Issue #19986: Avoid an incorrect warning of older gcc versions. by Stefan Krah · 11 years ago
  25. 03241e8 Issue #17919: Fixed integer overflow in the eventmask parameter. by Serhiy Storchaka · 11 years ago
  26. 5da107a Issue #17919: Fixed integer overflow in the eventmask parameter. by Serhiy Storchaka · 11 years ago
  27. f483b0f Issue #19972: Add rarely used freefunc. This fixes a leak if sys.exit() by Stefan Krah · 11 years ago
  28. 7ab9f72 Merge from 3.3. by Stefan Krah · 11 years ago
  29. 01e5f80 Fix C++ header usage. This __STDC_LIMIT_MACROS scheme can still be subverted by Stefan Krah · 11 years ago
  30. 3c2a178 Merge: #19970: Fix some comment typos. by R David Murray · 11 years ago
  31. fc06999 #19970: Fix some comment typos. by R David Murray · 11 years ago
  32. 590cebe Issue #19787: PyThread_set_key_value() now always set the value by Victor Stinner · 11 years ago
  33. cb1c4c8 Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. by Serhiy Storchaka · 11 years ago
  34. 3ad2d70 Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. by Serhiy Storchaka · 11 years ago
  35. 441adb8 Backout changeset 46393019b650 by Victor Stinner · 11 years ago
  36. cd0cb8c Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3, by Victor Stinner · 11 years ago
  37. 2aeb070 (Merge 3.3) Issue #14432: Fix compilation when thread support is disabled by Victor Stinner · 11 years ago
  38. 258e4d3 Issue #14432: Fix compilation when thread support is disabled by Victor Stinner · 11 years ago
  39. 1310510 Issue #14432: Generator now clears the borrowed reference to the thread state by Victor Stinner · 11 years ago
  40. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  41. 5bf91dc Merge from 3.3. by Stefan Krah · 11 years ago
  42. da12ada Do not discard const qualifier without a reason. by Stefan Krah · 11 years ago
  43. 2d181de Merge 3.3. by Stefan Krah · 11 years ago
  44. 2dae92a Issue #15475: Add __sizeof__ implementations for itertools objects. by Serhiy Storchaka · 11 years ago
  45. 37d4e0b Fix two typos. by Stefan Krah · 11 years ago
  46. 42e3b60 Missed one copyright. by Stefan Krah · 11 years ago
  47. ecff655 Update copyright. The four year increment is intentional (to save work). by Stefan Krah · 11 years ago
  48. ca616a2 - Issue #19736: Add module-level statvfs constants defined for GNU/glibc by doko@ubuntu.com · 11 years ago
  49. 5bb414d Issue #19343: Expose FreeBSD-specific APIs in resource module. Original patch by Koobs. by Christian Heimes · 11 years ago
  50. d05c9ff Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. by Alexandre Vassalotti · 11 years ago
  51. ee07b94 Fix indentation of switch cases. by Guido van Rossum · 11 years ago
  52. aa15276 Load expat_config.h and therefore pyconfig.h before C stdlib headers are loaded. by Christian Heimes · 11 years ago
  53. 6e73ff1 Issue #19881: Fix bad pickling of large bytes in cpickle. by Alexandre Vassalotti · 11 years ago
  54. 8ff6f3e Issue #19296: Silence compiler warning in dbm_open. by Christian Heimes · 11 years ago
  55. 48b7df7 exclude _hashopenssl.c:_setException() from LCOV coverage by Christian Heimes · 11 years ago
  56. 638aebd Fix broken docstring continuation line for detach(). by Guido van Rossum · 11 years ago
  57. bd306db silence unused-value warnings in libffi's dlmalloc.c by Christian Heimes · 11 years ago
  58. ecb4e6a Silence more PyObject_INIT() unused value warnings. by Christian Heimes · 11 years ago
  59. a3da7c5 make char* const by Christian Heimes · 11 years ago
  60. 47f02e5 ncurses' winch and mvwinch return an unsigned long by Christian Heimes · 11 years ago
  61. abbc8ca ncurses' winch and mvwinch return an unsigned long by Christian Heimes · 11 years ago
  62. 88c2987 Close #19741: tracemalloc_realloc() does not release the table lock anymore by Victor Stinner · 11 years ago
  63. 1511680 Close #19757: Cleanup tracemalloc, move by Victor Stinner · 11 years ago
  64. 9a95483 Close #19827: On UNIX, setblocking() and settimeout() methods of socket.socket by Victor Stinner · 11 years ago
  65. 4b7f7ac Make a couple of parameters constant. by Stefan Krah · 11 years ago
  66. b1e4c9d Make a couple of parameters constant. by Stefan Krah · 11 years ago
  67. 1aa9a75 Issue #19509: Add SSLContext.check_hostname to match the peer's certificate by Christian Heimes · 11 years ago
  68. 708a318 Fixes issue #15798: subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  69. 5abca14 Issue #18994: Add a missing check for a return value in fcntmodule. Patch by by Charles-François Natali · 11 years ago
  70. be0708f Closes #19831: Stop tracemalloc later at Python shutdown to be able to use by Victor Stinner · 11 years ago
  71. 54532c9 Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  72. 361e30c Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  73. 1c27e3c Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  74. 1eda9e7 Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  75. 2ccf8e9 Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  76. 65846c6 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. by Alexandre Vassalotti · 11 years ago
  77. 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  78. 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 11 years ago
  79. a1eedf9 Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  80. 896414f Fixed _pickle.Unpickler to handle empty persistent IDs correctly. by Alexandre Vassalotti · 11 years ago
  81. 6fe39b7 Issue #17897: Optimized unpickle prefetching. by Serhiy Storchaka · 11 years ago
  82. 9730e33 Issue #3693: Fix array obscure error message when given a str. by Alexandre Vassalotti · 11 years ago
  83. 567eba1 Use PyDict_GetItemWithError instead of PyDict_GetItem in cpickle. by Alexandre Vassalotti · 11 years ago
  84. 6bf41e5 Remove explicit empty tuple reuse in cpickle. by Alexandre Vassalotti · 11 years ago
  85. b13e6bc Remove the tuple reuse optimization in _Pickle_FastCall. by Alexandre Vassalotti · 11 years ago
  86. 8148164 Issue #19815: Fix segfault when parsing empty namespace declaration. by Eli Bendersky · 11 years ago
  87. 4b79518 Fix indentation from previous commit by Eli Bendersky · 11 years ago
  88. 5dd40e5 Issue #19815: Fix segfault when parsing empty namespace declaration. by Eli Bendersky · 11 years ago
  89. 470fba1 SNI was added in OpenSSL 0.9.8f [11 Oct 2007], too by Christian Heimes · 11 years ago
  90. 23bdd83 Encapsulate cpickle global state in a dedicated object. by Alexandre Vassalotti · 11 years ago
  91. f28ce60 Closes #19786: tracemalloc, remove the arbitrary limit of 100 frames by Victor Stinner · 11 years ago
  92. 3c0481d Close #19798: replace "maximum" term with "peak" in get_traced_memory() by Victor Stinner · 11 years ago
  93. 1314ef7 add SO_PRIORITY (closes #19802) by Benjamin Peterson · 11 years ago
  94. 20c28c1 Combine the FastCall functions in cpickle. by Alexandre Vassalotti · 11 years ago
  95. 687ff0e Issue #11489: JSON decoder now accepts lone surrogates. by Serhiy Storchaka · 11 years ago
  96. c93329b Issue #11489: JSON decoder now accepts lone surrogates. by Serhiy Storchaka · 11 years ago
  97. 59463d8 tracemalloc: fix get_traced_memory() docstring for result type by Victor Stinner · 11 years ago
  98. 4dc7420 Issue #18874: Fix typo by Victor Stinner · 11 years ago
  99. 2ead3d2 Issue #18874: make it more explicit than set_reentrant() only accept 0 or 1 by Victor Stinner · 11 years ago
  100. 7a5be14 Issue #18874: tracemalloc: Comment the trace_t structure by Victor Stinner · 11 years ago