1. 82c3e45 Issue #23836: Add _Py_write_noraise() function by Victor Stinner · 9 years ago
  2. 62d1c70 Issue #22117, issue #23485: Fix _PyTime_AsMilliseconds() and by Victor Stinner · 9 years ago
  3. fa09beb Issue #23485: Add _PyTime_FromMillisecondsObject() function by Victor Stinner · 9 years ago
  4. 81c6df5 (Merge 3.4) Issue #22585: os.urandom() now releases the GIL when the by Victor Stinner · 9 years ago
  5. 9aa1331 Issue #22585: os.urandom() now releases the GIL when the getentropy() is used by Victor Stinner · 9 years ago
  6. 79b74ae Issue #22181: os.urandom() now releases the GIL when the getrandom() by Victor Stinner · 9 years ago
  7. 45cff0c Issue #22117: Try to fix rounding in conversion from Python double to _PyTime_t by Victor Stinner · 9 years ago
  8. e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 9 years ago
  9. a695f83 Issue #22117: Remove _PyTime_ROUND_DOWN and _PyTime_ROUND_UP rounding methods by Victor Stinner · 9 years ago
  10. bcdd777 Issue #22117: Add _PyTime_ROUND_CEILING rounding method for timestamps by Victor Stinner · 9 years ago
  11. edddf99 Issue #22117: Add assertions to _PyTime_AsTimeval() and _PyTime_AsTimespec() to by Victor Stinner · 9 years ago
  12. ea9c0dd Issue #22117: Fix usage of _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  13. f81f0f9 Issue #22117: Fix rounding and implement _PyTime_ROUND_FLOOR in: by Victor Stinner · 9 years ago
  14. 1bd18ba Issue #22117: Cleanup pytime.c/.h by Victor Stinner · 9 years ago
  15. 09e5cf2 Issue #22117: Use the _PyTime_t API in _datetime.datetime() constructor by Victor Stinner · 9 years ago
  16. cb0c602 Issue #22117: Fix _PyTime_GetMonotonicClock() and by Victor Stinner · 9 years ago
  17. 02937aa Issue #22117: Add the new _PyTime_ROUND_FLOOR rounding method for the datetime by Victor Stinner · 9 years ago
  18. b3b4544 Issue #22117: Use the _PyTime_t API for time.clock_settime() by Victor Stinner · 9 years ago
  19. c337838 Issue #22117: Use the new _PyTime_t API in the select module by Victor Stinner · 9 years ago
  20. f5faad2 Issue #22117: The thread module uses the new _PyTime_t timestamp API by Victor Stinner · 9 years ago
  21. 95e9cef Issue #22117: Write unit tests for _PyTime_AsTimeval() by Victor Stinner · 9 years ago
  22. 34dc0f4 Issue #22117: The signal modules uses the new _PyTime_t API by Victor Stinner · 9 years ago
  23. a47b881 Issue #22117: time.time() now uses the new _PyTime_t API by Victor Stinner · 9 years ago
  24. 4bfb460 Issue #22117: time.monotonic() now uses the new _PyTime_t API by Victor Stinner · 9 years ago
  25. 992c43f Issue #22117: Fix rounding in _PyTime_FromSecondsObject() by Victor Stinner · 9 years ago
  26. eb35229 Issue #23451, #22117: Python 3.5 now requires Windows Vista or newer, so by Victor Stinner · 9 years ago
  27. cb29f01 Issue #22117: Add a new Python timestamp format _PyTime_t to pytime.h by Victor Stinner · 9 years ago
  28. 81f241a Issue #23571: If io.TextIOWrapper constructor fails in _Py_DisplaySourceLine(), by Victor Stinner · 9 years ago
  29. 84092ac Issue #23571: Fix reentrant call to Py_FatalError() by Victor Stinner · 9 years ago
  30. ec4f959 Issue #23571: Py_FatalError() now tries to flush sys.stdout and sys.stderr by Victor Stinner · 9 years ago
  31. 0e98a76 Issue #23571: Enhance Py_FatalError() by Victor Stinner · 9 years ago
  32. 39183df Merge 3.4 (traceback) by Victor Stinner · 9 years ago
  33. 53345a4 (Merge 3.4) Issue #23571: Fix reentrant call to Py_FatalError() by Victor Stinner · 9 years ago
  34. e0deff3 (Merge 3.4) Issue #23571: Py_FatalError() now tries to flush sys.stdout and by Victor Stinner · 9 years ago
  35. de821be Issue #23571: PyErr_FormatV() and PyErr_SetObject() now always clear the by Victor Stinner · 9 years ago
  36. 91afbb6 Issue #23753: Move _Py_wstat() from Python/fileutils.c to Modules/getpath.c by Victor Stinner · 9 years ago
  37. 10dc484 (Merge 3.4) Issue #23571: Enhance Py_FatalError() by Victor Stinner · 9 years ago
  38. f329878 Issue #23753: Python doesn't support anymore platforms without stat() or by Victor Stinner · 9 years ago
  39. efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 9 years ago
  40. a3c0202 Issue #23708: Save/restore errno in _Py_read() and _Py_write() by Victor Stinner · 9 years ago
  41. 7f04d4d Issue #23708: Split assertion expression in two assertions in _Py_read() and by Victor Stinner · 9 years ago
  42. 580ef13 Cleanup pytime.c: add XXX_TO_YYY constants (ex: SEC_TO_US) by Victor Stinner · 9 years ago
  43. 9a8089b Issue #23646: Enhance precision of time.sleep() and socket timeout when by Victor Stinner · 9 years ago
  44. c1cf4f7 Issue #23708: Fix _Py_read() compilation error on Windows by Victor Stinner · 9 years ago
  45. c9382eb Issue #23707: On UNIX, os.urandom() now calls the Python signal handler when by Victor Stinner · 9 years ago
  46. c7cd12d Issue #22181: Fix dev_urandom_noraise(), try calling py_getrandom() before by Victor Stinner · 9 years ago
  47. 66aab0c Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handle by Victor Stinner · 9 years ago
  48. 9eb57c5 Issue #22181: The availability of the getrandom() is now checked in configure, by Victor Stinner · 9 years ago
  49. 009b811 Removed unintentional trailing spaces in non-external and non-generated C files. by Serhiy Storchaka · 9 years ago
  50. 0c39b1b Initialize variables to prevent GCC warnings by Victor Stinner · 9 years ago
  51. 938b0b9 Fix compiler warning in dtoa.c by Victor Stinner · 9 years ago
  52. 59f7fb2 Issue #22181: On Linux, os.urandom() now uses the new getrandom() syscall if by Victor Stinner · 9 years ago
  53. 5200f55 Issue #19428: Handle PyMarshal_Read*() errors in run_pyc_file() by Victor Stinner · 9 years ago
  54. a47fc5c Issue #23694: Handle EINTR in _Py_open() and _Py_fopen_obj() by Victor Stinner · 9 years ago
  55. e42ccd2 Issue #23694: Enhance _Py_fopen(), it now raises an exception on error by Victor Stinner · 9 years ago
  56. a555cfc Issue #23694: Enhance _Py_open(), it now raises exceptions by Victor Stinner · 9 years ago
  57. 59b356d Issue #23571: Restore removed assert(!PyErr_Occurred()); in by Victor Stinner · 9 years ago
  58. 9aa31d5 Fixes incorrect use of GetLastError where errno should be used. by Steve Dower · 9 years ago
  59. 41e7244 Fixes incorrect use of GetLastError where errno should be used. by Steve Dower · 9 years ago
  60. 9142773 Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. by Serhiy Storchaka · 9 years ago
  61. c775ad6 Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. by Serhiy Storchaka · 9 years ago
  62. 8acde7d Issue #23524: Change back to using Windows errors for _Py_fstat instead of the errno shim. by Steve Dower · 9 years ago
  63. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  64. d81431f Issue #23524: Replace _PyVerify_fd function with calling _set_thread_local_invalid_parameter_handler on every thread. by Steve Dower · 9 years ago
  65. 3e96f32 Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks. by Steve Dower · 9 years ago
  66. bf1f376 Issue #23152: Renames time_t_to_FILE_TIME to _Py_time_t_to_FILE_TIME, removes unused struct win32_stat and return value by Steve Dower · 9 years ago
  67. a2af1a5 Issue #23152: Renames attribute_data_to_stat to _Py_attribute_data_to_stat by Steve Dower · 9 years ago
  68. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 9 years ago
  69. 483405b Issue #22883: Got rid of outdated references to PyInt and PyString in comments. by Serhiy Storchaka · 9 years ago
  70. 67559bf Issue #23450: Silenced compiler warnings and added asserts in peephole optimizer. by Serhiy Storchaka · 9 years ago
  71. 26861b0 Issue #23450: Fixed possible integer overflows. by Serhiy Storchaka · 9 years ago
  72. 4d0d982 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  73. 1a1ff29 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  74. 53fa8b2 Fixed few compiler warnings. by Serhiy Storchaka · 9 years ago
  75. f80ccf2 merge 3.4 (#22633) by Benjamin Peterson · 9 years ago
  76. 2476b98 avoid reading unallocated memory when argc == 0 (closes #22633) by Benjamin Peterson · 9 years ago
  77. c07422c Splitted the WFILE structure to WFILE and RFILE. by Serhiy Storchaka · 9 years ago
  78. c1efe5f Issue #23344: marshal.dumps() is now 20-25% faster on average. by Serhiy Storchaka · 9 years ago
  79. ce921c62 Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster on by Serhiy Storchaka · 9 years ago
  80. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  81. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  82. f86d1fd merge 3.4 (#21295) by Benjamin Peterson · 9 years ago
  83. 7a66fc2 revert lineno and col_offset changes from #16795 (closes #21295) by Benjamin Peterson · 9 years ago
  84. 13a1c60 Merge 3.4 (generator) by Victor Stinner · 9 years ago
  85. 26f7b8a Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx(). by Victor Stinner · 9 years ago
  86. aaef05f Fixed memory leak in marshal. by Serhiy Storchaka · 9 years ago
  87. 000daae Fixed memory leak in marshal. by Serhiy Storchaka · 9 years ago
  88. 07985ef Issue #22286: The "backslashreplace" error handlers now works with by Serhiy Storchaka · 9 years ago
  89. 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 9 years ago
  90. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 9 years ago
  91. 02d8454 Issue #23014: Make importlib.abc.Loader.create_module() required when by Brett Cannon · 9 years ago
  92. f869341 merge 3.4 (#23165) by Benjamin Peterson · 9 years ago
  93. 10ecaa2 merge 3.3 (closes #23165) by Benjamin Peterson · 9 years ago
  94. 72c2a0f merge 3.2 (closes #23165) by Benjamin Peterson · 9 years ago
  95. f18bf6f add some overflow checks before multiplying (closes #23165) by Benjamin Peterson · 9 years ago
  96. 52074ac merge 3.4 by Benjamin Peterson · 10 years ago
  97. a453749 merge 3.3 by Benjamin Peterson · 10 years ago
  98. 7919acb merge 3.2 by Benjamin Peterson · 10 years ago
  99. 47e782a update for copyright for 2015 by Benjamin Peterson · 10 years ago
  100. fe02e39 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago