1. b7a8af2 Fix _PyTime_AsTimevalStruct_impl() on OpenBSD by Victor Stinner · 9 years ago
  2. c29f399 Backout change 28d3bcb1bad6: "Try to fix _PyTime_AsTimevalStruct_impl() on by Victor Stinner · 9 years ago
  3. c51d244 Issue #25171: Fix compilation issue on OpenBSD in random.c by Victor Stinner · 9 years ago
  4. 449b271 Issue #18174: Explain why is_valid_fd() uses dup() instead of fstat() by Victor Stinner · 9 years ago
  5. 2bfed53 Try to fix _PyTime_AsTimevalStruct_impl() on OpenBSD by Victor Stinner · 9 years ago
  6. 00d4442 merge 3.5 (#25131) by Benjamin Peterson · 9 years ago
  7. 58b5395 make opening brace of container literals and comprehensions correspond to the line number and col offset of the AST node (closes #25131) by Benjamin Peterson · 9 years ago
  8. 1dae0c6 Issue #25186: Remove duplicated function from importlib._bootstrap_external by Brett Cannon · 9 years ago
  9. 1e5fcc3 Fixed error creation if the problem is an empty expression in an f-string: use ast_error instead of PyErr_SetString. by Eric V. Smith · 9 years ago
  10. 1d44c41 Move f-string compilation of the expression earlier, before the conversion character and format_spec are checked. This allows for error messages that more closely match what a user would expect. by Eric V. Smith · 9 years ago
  11. 5567f89 Issue #24779: Remove unused rawmode parameter to unicode_decode. by Eric V. Smith · 9 years ago
  12. 235a6f0 Issue #24965: Implement PEP 498 "Literal String Interpolation". Documentation is still needed, I'll open an issue for that. by Eric V. Smith · 9 years ago
  13. 3abf44e Issue #25003: On Solaris 11.3 or newer, os.urandom() now uses the getrandom() by Victor Stinner · 9 years ago
  14. ec26f83 Issue #25155: Fix _PyTime_Divide() rounding by Victor Stinner · 9 years ago
  15. 9a8b177 Issue #25155: Add _PyTime_AsTimevalTime_t() function by Victor Stinner · 9 years ago
  16. 1e2b688 Issue #25155: Add _PyTime_AsTimevalTime_t() function by Victor Stinner · 9 years ago
  17. 3e30fd7 Merge 3.5 (imp/_imp) by Victor Stinner · 9 years ago
  18. cd6e694 Issue #25160: Fix import_init() comments and messages by Victor Stinner · 9 years ago
  19. 7920b70 merge 3.5 (#25060) by Benjamin Peterson · 9 years ago
  20. b685515 compute stack effect of BUILD_MAP correctly (closes #25060) by Benjamin Peterson · 9 years ago
  21. 51b9398 pytime: oops, fix typos on Windows by Victor Stinner · 9 years ago
  22. c60542b pytime: add _PyTime_check_mul_overflow() macro to avoid undefined behaviour by Victor Stinner · 9 years ago
  23. ff0ed3e New try to fix test_time.test_AsSecondsDouble() on x86 buildbots. by Victor Stinner · 9 years ago
  24. 1efbeba Try to fix test_time.test_AsSecondsDouble() on "x86 Gentoo Non-Debug with X 3.x" buildbot by Victor Stinner · 9 years ago
  25. 9c72f9b Fix test_time on Windows by Victor Stinner · 9 years ago
  26. 3e2c8d8 test_time: rewrite PyTime API rounding tests by Victor Stinner · 9 years ago
  27. 9ae47df pytime: add _PyTime_Round() helper to factorize code by Victor Stinner · 9 years ago
  28. ce6aa74 Make _PyTime_RoundHalfEven() private again by Victor Stinner · 9 years ago
  29. 7667f58 Issue #23517: fromtimestamp() and utcfromtimestamp() methods of by Victor Stinner · 9 years ago
  30. 45fd951 Merge from 3.5 by Steve Dower · 9 years ago
  31. f35bd30 Merge from 3.5.0 branch. by Steve Dower · 9 years ago
  32. 56f6e76 Issue #15989: Fixed some scarcely probable integer overflows. by Serhiy Storchaka · 9 years ago
  33. 714e493 Issue #24305: Prevent import subsystem stack frames from being counted by Larry Hastings · 9 years ago
  34. adfefa5 Issue #23517: Fix implementation of the ROUND_HALF_UP rounding mode in by Victor Stinner · 9 years ago
  35. d05f499 Merge 3.5 (create_stdio) by Victor Stinner · 9 years ago
  36. 874dbe8 Merge 3.4 (create_stdio) by Victor Stinner · 9 years ago
  37. 6fb5bae Fix race condition in create_stdio() by Victor Stinner · 9 years ago
  38. 5786aef Don't abuse volatile keyword in pytime.c by Victor Stinner · 9 years ago
  39. 29ee674 Enhance _PyTime_AsTimespec() by Victor Stinner · 9 years ago
  40. fbb215c Merge 3.5 (namereplace) by Victor Stinner · 9 years ago
  41. 38b8ae0 Issue #24993: Handle import error in namereplace error handler by Victor Stinner · 9 years ago
  42. 00723e0 Fix ast_for_atom() by Victor Stinner · 9 years ago
  43. 5a682c9 Merge 3.5 (monotonic) by Victor Stinner · 9 years ago
  44. 5ad5821 oops, rename pymonotonic_new() to pymonotonic() by Victor Stinner · 9 years ago
  45. c3c616c Issue #24707: Remove assertion in monotonic clock by Victor Stinner · 9 years ago
  46. 2ec5587 Issue #23517: datetime.timedelta constructor now rounds microseconds to nearest by Victor Stinner · 9 years ago
  47. 1fa3652 Merge 3.5 (issue #24975) by Yury Selivanov · 9 years ago
  48. 24b822e Issue #23517: Try to fix test_time on "x86 Ubuntu Shared 3.x" buildbot by Victor Stinner · 9 years ago
  49. 67edcc9 Issue #23517: Fix _PyTime_ObjectToDenominator() by Victor Stinner · 9 years ago
  50. 7447423 Issue #23517: Add "half up" rounding mode to the _PyTime API by Victor Stinner · 9 years ago
  51. bbdda21 Move assertion inside _PyTime_ObjectToTimeval() by Victor Stinner · 9 years ago
  52. 53e137c Refactor pytime.c by Victor Stinner · 9 years ago
  53. b3d5313 Issue #24975: Fix AST compilation for PEP 448 syntax. by Yury Selivanov · 9 years ago
  54. 45d1c00 Merge from 3.5 (with 3.5.0rc2 changes) into default (3.6). Messy! by Larry Hastings · 9 years ago
  55. 01b1ff6 Rebuilt Clinic generated code. by Larry Hastings · 9 years ago
  56. 1df0b35 Issue #24769: Interpreter now starts properly when dynamic loading by Larry Hastings · 9 years ago
  57. 163b5c6 Fix a trivial typo. by Eric V. Smith · 9 years ago
  58. 501b4a7 Use PyTuple_GET_SIZE like the adjacent code does. by Raymond Hettinger · 9 years ago
  59. f109414 Inline PyIter_Next() matching the other itertools code. by Raymond Hettinger · 9 years ago
  60. d868376 Merge from 3.5 for issue #24492 by Brett Cannon · 9 years ago
  61. 3008bc0 Issue #24492: make sure that ``from ... import ...` raises an by Brett Cannon · 9 years ago
  62. df39599 Issue #9232: Support trailing commas in function declarations. by Robert Collins · 9 years ago
  63. dca249b Merge 3.5 (issue #24791) by Yury Selivanov · 9 years ago
  64. 14acf5f Issue #24791: Fix grammar regression for call syntax: 'g(*a or b)'. by Yury Selivanov · 9 years ago
  65. f716e74 Merge 3.5 (os.urandom) by Victor Stinner · 9 years ago
  66. 61d5aab py_getrandom(): getrandom() *can* return EINTR by Victor Stinner · 9 years ago
  67. 0bd5fb0 Issue #24728: Fix building without threads. by Berker Peksag · 9 years ago
  68. ff9fe23 Fix refleak. by Stefan Krah · 9 years ago
  69. c0cbed1 Fix refleak. by Stefan Krah · 9 years ago
  70. 6d35043 Merge 3.5 (Issue #24687) by Yury Selivanov · 9 years ago
  71. f315c1c Issue #24687: Plug refleak on SyntaxError in function parameters annotations. by Yury Selivanov · 9 years ago
  72. 0811c5d Merge 3.5 (Issue #24619) by Yury Selivanov · 9 years ago
  73. b7666a3 Issue #24619: More tests; fix nits in compiler.c by Yury Selivanov · 9 years ago
  74. 9f71cb0 merge 3.5 (#24569) by Benjamin Peterson · 9 years ago
  75. d5d77aa set items in dict displays from left to right (closes #24569) by Benjamin Peterson · 9 years ago
  76. bb215e2 Merge 3.5 (Issue #19235) by Yury Selivanov · 9 years ago
  77. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  78. 3bd2b98 Merge 3.5 (Issue #24528) by Yury Selivanov · 9 years ago
  79. 9dec035 Issue #24528: Improve error message for awaits in comprehensions by Yury Selivanov · 9 years ago
  80. 6edc2f7 Issue #24400: Merge 3.5 by Yury Selivanov · 9 years ago
  81. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  82. dcbff7d Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 9 years ago
  83. 289dd19 Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 9 years ago
  84. 5fa22fc Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 9 years ago
  85. 86621ae Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add. by Serhiy Storchaka · 9 years ago
  86. ccfdf09 Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add. by Serhiy Storchaka · 9 years ago
  87. 73c95f1 Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add. by Serhiy Storchaka · 9 years ago
  88. ec466a1 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  89. 553e156 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  90. d741a88 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  91. 94c2263 Issue 24374: Plug refleak in set_coroutine_wrapper by Yury Selivanov · 9 years ago
  92. eb698fe Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper by Yury Selivanov · 9 years ago
  93. 72ea27c Issue 24366: Merge 3.4 by Yury Selivanov · 9 years ago
  94. e126857 Issue 24366: Merge 3.3 by Yury Selivanov · 9 years ago
  95. 614bfcc Issue 24366: Indent code (thanks to li4ick for reporting). by Yury Selivanov · 9 years ago
  96. aab3c4a Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully by Yury Selivanov · 9 years ago
  97. d8cf382 Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private by Yury Selivanov · 9 years ago
  98. ac5569b Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  99. fa494fd Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  100. 8b2e8b6 Specify default values of semantic booleans in Argument Clinic generated signatures as booleans. by Serhiy Storchaka · 9 years ago