1. cd0cb8c Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3, by Victor Stinner · 11 years ago
  2. 2aeb070 (Merge 3.3) Issue #14432: Fix compilation when thread support is disabled by Victor Stinner · 11 years ago
  3. 258e4d3 Issue #14432: Fix compilation when thread support is disabled by Victor Stinner · 11 years ago
  4. 1310510 Issue #14432: Generator now clears the borrowed reference to the thread state by Victor Stinner · 11 years ago
  5. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  6. 5bf91dc Merge from 3.3. by Stefan Krah · 11 years ago
  7. da12ada Do not discard const qualifier without a reason. by Stefan Krah · 11 years ago
  8. 2d181de Merge 3.3. by Stefan Krah · 11 years ago
  9. 2dae92a Issue #15475: Add __sizeof__ implementations for itertools objects. by Serhiy Storchaka · 11 years ago
  10. 37d4e0b Fix two typos. by Stefan Krah · 11 years ago
  11. 42e3b60 Missed one copyright. by Stefan Krah · 11 years ago
  12. ecff655 Update copyright. The four year increment is intentional (to save work). by Stefan Krah · 11 years ago
  13. ca616a2 - Issue #19736: Add module-level statvfs constants defined for GNU/glibc by doko@ubuntu.com · 11 years ago
  14. 5bb414d Issue #19343: Expose FreeBSD-specific APIs in resource module. Original patch by Koobs. by Christian Heimes · 11 years ago
  15. d05c9ff Issue #6784: Strings from Python 2 can now be unpickled as bytes objects. by Alexandre Vassalotti · 11 years ago
  16. ee07b94 Fix indentation of switch cases. by Guido van Rossum · 11 years ago
  17. aa15276 Load expat_config.h and therefore pyconfig.h before C stdlib headers are loaded. by Christian Heimes · 11 years ago
  18. 6e73ff1 Issue #19881: Fix bad pickling of large bytes in cpickle. by Alexandre Vassalotti · 11 years ago
  19. 8ff6f3e Issue #19296: Silence compiler warning in dbm_open. by Christian Heimes · 11 years ago
  20. 48b7df7 exclude _hashopenssl.c:_setException() from LCOV coverage by Christian Heimes · 11 years ago
  21. 638aebd Fix broken docstring continuation line for detach(). by Guido van Rossum · 11 years ago
  22. bd306db silence unused-value warnings in libffi's dlmalloc.c by Christian Heimes · 11 years ago
  23. ecb4e6a Silence more PyObject_INIT() unused value warnings. by Christian Heimes · 11 years ago
  24. a3da7c5 make char* const by Christian Heimes · 11 years ago
  25. 47f02e5 ncurses' winch and mvwinch return an unsigned long by Christian Heimes · 11 years ago
  26. abbc8ca ncurses' winch and mvwinch return an unsigned long by Christian Heimes · 11 years ago
  27. 88c2987 Close #19741: tracemalloc_realloc() does not release the table lock anymore by Victor Stinner · 11 years ago
  28. 1511680 Close #19757: Cleanup tracemalloc, move by Victor Stinner · 11 years ago
  29. 9a95483 Close #19827: On UNIX, setblocking() and settimeout() methods of socket.socket by Victor Stinner · 11 years ago
  30. 4b7f7ac Make a couple of parameters constant. by Stefan Krah · 11 years ago
  31. b1e4c9d Make a couple of parameters constant. by Stefan Krah · 11 years ago
  32. 1aa9a75 Issue #19509: Add SSLContext.check_hostname to match the peer's certificate by Christian Heimes · 11 years ago
  33. 708a318 Fixes issue #15798: subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  34. 5abca14 Issue #18994: Add a missing check for a return value in fcntmodule. Patch by by Charles-François Natali · 11 years ago
  35. be0708f Closes #19831: Stop tracemalloc later at Python shutdown to be able to use by Victor Stinner · 11 years ago
  36. 54532c9 Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  37. 361e30c Undo supposed fix for Issue #15798 until I understand why this is by Gregory P. Smith · 11 years ago
  38. 1c27e3c Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  39. 1eda9e7 Fixes Issue #15798 - subprocess.Popen() no longer fails if file by Gregory P. Smith · 11 years ago
  40. 2ccf8e9 Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  41. 65846c6 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. by Alexandre Vassalotti · 11 years ago
  42. 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  43. 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 11 years ago
  44. a1eedf9 Merge with 3.3. by Alexandre Vassalotti · 11 years ago
  45. 896414f Fixed _pickle.Unpickler to handle empty persistent IDs correctly. by Alexandre Vassalotti · 11 years ago
  46. 6fe39b7 Issue #17897: Optimized unpickle prefetching. by Serhiy Storchaka · 11 years ago
  47. 9730e33 Issue #3693: Fix array obscure error message when given a str. by Alexandre Vassalotti · 11 years ago
  48. 567eba1 Use PyDict_GetItemWithError instead of PyDict_GetItem in cpickle. by Alexandre Vassalotti · 11 years ago
  49. 6bf41e5 Remove explicit empty tuple reuse in cpickle. by Alexandre Vassalotti · 11 years ago
  50. b13e6bc Remove the tuple reuse optimization in _Pickle_FastCall. by Alexandre Vassalotti · 11 years ago
  51. 8148164 Issue #19815: Fix segfault when parsing empty namespace declaration. by Eli Bendersky · 11 years ago
  52. 4b79518 Fix indentation from previous commit by Eli Bendersky · 11 years ago
  53. 5dd40e5 Issue #19815: Fix segfault when parsing empty namespace declaration. by Eli Bendersky · 11 years ago
  54. 470fba1 SNI was added in OpenSSL 0.9.8f [11 Oct 2007], too by Christian Heimes · 11 years ago
  55. 23bdd83 Encapsulate cpickle global state in a dedicated object. by Alexandre Vassalotti · 11 years ago
  56. f28ce60 Closes #19786: tracemalloc, remove the arbitrary limit of 100 frames by Victor Stinner · 11 years ago
  57. 3c0481d Close #19798: replace "maximum" term with "peak" in get_traced_memory() by Victor Stinner · 11 years ago
  58. 1314ef7 add SO_PRIORITY (closes #19802) by Benjamin Peterson · 11 years ago
  59. 20c28c1 Combine the FastCall functions in cpickle. by Alexandre Vassalotti · 11 years ago
  60. 687ff0e Issue #11489: JSON decoder now accepts lone surrogates. by Serhiy Storchaka · 11 years ago
  61. c93329b Issue #11489: JSON decoder now accepts lone surrogates. by Serhiy Storchaka · 11 years ago
  62. 59463d8 tracemalloc: fix get_traced_memory() docstring for result type by Victor Stinner · 11 years ago
  63. 4dc7420 Issue #18874: Fix typo by Victor Stinner · 11 years ago
  64. 2ead3d2 Issue #18874: make it more explicit than set_reentrant() only accept 0 or 1 by Victor Stinner · 11 years ago
  65. 7a5be14 Issue #18874: tracemalloc: Comment the trace_t structure by Victor Stinner · 11 years ago
  66. de2f132 Issue #18874: tracemalloc: explain the purpose of get_traces.tracebacks in a comment by Victor Stinner · 11 years ago
  67. 000de53 Issue #19752: Fix "HAVE_DEV_PTMX" implementation of os.openpty() by Victor Stinner · 11 years ago
  68. b4a04fb Reverting e39db21df580 eagerly due to buildbot failures. by Alexandre Vassalotti · 11 years ago
  69. f94a041 Combine _Pickler_FastCall and _Unpickler_FastCall in cpickle. by Alexandre Vassalotti · 11 years ago
  70. 1048fb5 Issue #19739: Try to fix compiler warnings on 32-bit Windows. by Alexandre Vassalotti · 11 years ago
  71. 4fbefdb Close #19762: Fix name of _get_traces() and _get_object_traceback() function by Victor Stinner · 11 years ago
  72. ded929b Merge save_int into save_long in cpickle to remove redundant code. by Alexandre Vassalotti · 11 years ago
  73. 8a67f52 Simplify save_bool in cpickle. by Alexandre Vassalotti · 11 years ago
  74. ed8c906 Use Clinic to process arguments in cpickle. by Alexandre Vassalotti · 11 years ago
  75. daa96b7 Merge from 3.3. by Stefan Krah · 11 years ago
  76. 45059eb 1) Prepare libmpdec for the 2.4.0 release. None of the following changes affects by Stefan Krah · 11 years ago
  77. 7587507 Issue #19636: Fix usage of MAX_PATH in posixmodule.c by Victor Stinner · 11 years ago
  78. 6edddfa Issue #19636: Fix posix__getvolumepathname(), raise an OverflowError if by Victor Stinner · 11 years ago
  79. 163d7f0 Cosmetic fixes by Eli Bendersky · 11 years ago
  80. dc6aaec Clinic: fix "self converters" with METH_NOARGS functions. by Larry Hastings · 11 years ago
  81. 08facd2 Issue #19741: cleanup tracemalloc_realloc() by Victor Stinner · 11 years ago
  82. fc91285 Remove code path in cpickle that does not exist in pickle. by Alexandre Vassalotti · 11 years ago
  83. 5296867 Issue #19741: tracemalloc: report tracemalloc_log_alloc() failure to the caller by Victor Stinner · 11 years ago
  84. c49477b Make Ellipsis and NotImplemented picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  85. 4c05d3b Make built-in methods picklable through the reduce protocol. by Alexandre Vassalotti · 11 years ago
  86. d606ba7 Issue #19741: fix tracemalloc_log_alloc(), handle _Py_HASHTABLE_SET() failure by Victor Stinner · 11 years ago
  87. b6a2f2a Make framing optional in pickle protocol 4. by Alexandre Vassalotti · 11 years ago
  88. 44e2eaa Issue #19674: inspect.signature() now produces a correct signature by Larry Hastings · 11 years ago
  89. ebdcb50 Issue #19730: Argument Clinic now supports all the existing PyArg by Larry Hastings · 11 years ago
  90. 3a90797 Issue #19722: Added opcode.stack_effect(), which accurately by Larry Hastings · 11 years ago
  91. 32eddc1 Issue #16203: Add re.fullmatch() function and regex.fullmatch() method, by Serhiy Storchaka · 11 years ago
  92. 5c24d0e Issue #13592: Improved the repr for regular expression pattern objects. by Serhiy Storchaka · 11 years ago
  93. c1207c1 Fix signed / unsigned comparison by Antoine Pitrou · 11 years ago
  94. 3062c9a Issue #19641: Added the audioop.byteswap() function to convert big-endian by Serhiy Storchaka · 11 years ago
  95. 2b38fc1 gcc doesn't realize that dummy is always initialized by the function call by Gregory P. Smith · 11 years ago
  96. 310e4c4 merge by Christian Heimes · 11 years ago
  97. e8b1ba1 Issue #17810: Add two missing error checks to save_global by Christian Heimes · 11 years ago
  98. dd52c5a Merge heads by Serhiy Storchaka · 11 years ago
  99. 6787a38 Issue #15204: Deprecated the 'U' mode in file-like objects. by Serhiy Storchaka · 11 years ago
  100. 6188d09 Merge by Antoine Pitrou · 11 years ago