1. 580ef13 Cleanup pytime.c: add XXX_TO_YYY constants (ex: SEC_TO_US) by Victor Stinner · 9 years ago
  2. 9a8089b Issue #23646: Enhance precision of time.sleep() and socket timeout when by Victor Stinner · 9 years ago
  3. c1cf4f7 Issue #23708: Fix _Py_read() compilation error on Windows by Victor Stinner · 9 years ago
  4. c9382eb Issue #23707: On UNIX, os.urandom() now calls the Python signal handler when by Victor Stinner · 9 years ago
  5. c7cd12d Issue #22181: Fix dev_urandom_noraise(), try calling py_getrandom() before by Victor Stinner · 9 years ago
  6. 66aab0c Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handle by Victor Stinner · 9 years ago
  7. 9eb57c5 Issue #22181: The availability of the getrandom() is now checked in configure, by Victor Stinner · 9 years ago
  8. 009b811 Removed unintentional trailing spaces in non-external and non-generated C files. by Serhiy Storchaka · 9 years ago
  9. 0c39b1b Initialize variables to prevent GCC warnings by Victor Stinner · 9 years ago
  10. 938b0b9 Fix compiler warning in dtoa.c by Victor Stinner · 9 years ago
  11. 59f7fb2 Issue #22181: On Linux, os.urandom() now uses the new getrandom() syscall if by Victor Stinner · 9 years ago
  12. 5200f55 Issue #19428: Handle PyMarshal_Read*() errors in run_pyc_file() by Victor Stinner · 9 years ago
  13. a47fc5c Issue #23694: Handle EINTR in _Py_open() and _Py_fopen_obj() by Victor Stinner · 9 years ago
  14. e42ccd2 Issue #23694: Enhance _Py_fopen(), it now raises an exception on error by Victor Stinner · 9 years ago
  15. a555cfc Issue #23694: Enhance _Py_open(), it now raises exceptions by Victor Stinner · 9 years ago
  16. 59b356d Issue #23571: Restore removed assert(!PyErr_Occurred()); in by Victor Stinner · 9 years ago
  17. 9aa31d5 Fixes incorrect use of GetLastError where errno should be used. by Steve Dower · 9 years ago
  18. 41e7244 Fixes incorrect use of GetLastError where errno should be used. by Steve Dower · 9 years ago
  19. 9142773 Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. by Serhiy Storchaka · 9 years ago
  20. c775ad6 Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. by Serhiy Storchaka · 9 years ago
  21. 8acde7d Issue #23524: Change back to using Windows errors for _Py_fstat instead of the errno shim. by Steve Dower · 9 years ago
  22. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  23. d81431f Issue #23524: Replace _PyVerify_fd function with calling _set_thread_local_invalid_parameter_handler on every thread. by Steve Dower · 9 years ago
  24. 3e96f32 Issue #23451: Update pyconfig.h for Windows to require Vista headers and remove unnecessary version checks. by Steve Dower · 9 years ago
  25. 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
  26. a2af1a5 Issue #23152: Renames attribute_data_to_stat to _Py_attribute_data_to_stat by Steve Dower · 9 years ago
  27. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 9 years ago
  28. 483405b Issue #22883: Got rid of outdated references to PyInt and PyString in comments. by Serhiy Storchaka · 9 years ago
  29. 67559bf Issue #23450: Silenced compiler warnings and added asserts in peephole optimizer. by Serhiy Storchaka · 9 years ago
  30. 26861b0 Issue #23450: Fixed possible integer overflows. by Serhiy Storchaka · 9 years ago
  31. 4d0d982 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  32. 1a1ff29 Issue #23446: Use PyMem_New instead of PyMem_Malloc to avoid possible integer by Serhiy Storchaka · 9 years ago
  33. 53fa8b2 Fixed few compiler warnings. by Serhiy Storchaka · 9 years ago
  34. f80ccf2 merge 3.4 (#22633) by Benjamin Peterson · 9 years ago
  35. 2476b98 avoid reading unallocated memory when argc == 0 (closes #22633) by Benjamin Peterson · 9 years ago
  36. c07422c Splitted the WFILE structure to WFILE and RFILE. by Serhiy Storchaka · 9 years ago
  37. c1efe5f Issue #23344: marshal.dumps() is now 20-25% faster on average. by Serhiy Storchaka · 9 years ago
  38. ce921c62 Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster on by Serhiy Storchaka · 9 years ago
  39. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  40. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  41. f86d1fd merge 3.4 (#21295) by Benjamin Peterson · 9 years ago
  42. 7a66fc2 revert lineno and col_offset changes from #16795 (closes #21295) by Benjamin Peterson · 9 years ago
  43. 13a1c60 Merge 3.4 (generator) by Victor Stinner · 9 years ago
  44. 26f7b8a Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx(). by Victor Stinner · 9 years ago
  45. aaef05f Fixed memory leak in marshal. by Serhiy Storchaka · 9 years ago
  46. 000daae Fixed memory leak in marshal. by Serhiy Storchaka · 9 years ago
  47. 07985ef Issue #22286: The "backslashreplace" error handlers now works with by Serhiy Storchaka · 9 years ago
  48. 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 9 years ago
  49. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 9 years ago
  50. 02d8454 Issue #23014: Make importlib.abc.Loader.create_module() required when by Brett Cannon · 9 years ago
  51. f869341 merge 3.4 (#23165) by Benjamin Peterson · 9 years ago
  52. 10ecaa2 merge 3.3 (closes #23165) by Benjamin Peterson · 9 years ago
  53. 72c2a0f merge 3.2 (closes #23165) by Benjamin Peterson · 9 years ago
  54. f18bf6f add some overflow checks before multiplying (closes #23165) by Benjamin Peterson · 9 years ago
  55. 52074ac merge 3.4 by Benjamin Peterson · 10 years ago
  56. a453749 merge 3.3 by Benjamin Peterson · 10 years ago
  57. 7919acb merge 3.2 by Benjamin Peterson · 10 years ago
  58. 47e782a update for copyright for 2015 by Benjamin Peterson · 10 years ago
  59. fe02e39 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
  60. 4d6a3d6 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
  61. 03a144b #22980 Adds platform and version tags to .pyd files by Steve Dower · 10 years ago
  62. cd441c4 Update Python/importlib.h by Zachary Ware · 10 years ago
  63. 7ced53c merge 3.4 (#23048) by Benjamin Peterson · 10 years ago
  64. 3cda0ed pop the loop block even for infinite while loops (closes #23048) by Benjamin Peterson · 10 years ago
  65. 0b881dd Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64, by Victor Stinner · 10 years ago
  66. b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  67. 9e4db75 - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 10 years ago
  68. 2a41385 - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 10 years ago
  69. 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  70. 60b33cc Merge 3.4 (ceval.c) by Victor Stinner · 10 years ago
  71. 5db1bb8 Issue #22696: Add function :func:`sys.is_finalizing` to know about interpreter shutdown. by Antoine Pitrou · 10 years ago
  72. 92bf919 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  73. d32d4ae - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 10 years ago
  74. 83000a4 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
  75. 3663b58 correct assertion by Benjamin Peterson · 10 years ago
  76. 810aa6d fix variable name by Benjamin Peterson · 10 years ago
  77. aacfccc Issue #19676: Fixed integer overflow issue in "namereplace" error handler. by Serhiy Storchaka · 10 years ago
  78. 166ebc4 Issue #19676: Added the "namereplace" error handler. by Serhiy Storchaka · 10 years ago
  79. da8cef4 Issue #22934: Update the comment to mention Programs/_freeze_importlib.c. by Berker Peksag · 10 years ago
  80. d3c53b6 Update importlib.h by Antoine Pitrou · 10 years ago
  81. c4821d6 Closes #22869: Move PyOS_CheckStack back to pythonrun.c by Zachary Ware · 10 years ago
  82. 9b59dd4 Issue #22869: Remove duplicate stack check from pythonrun.c by Steve Dower · 10 years ago
  83. b6e2556 Issue #22834: Have import suppress FileNotFoundError when the current by Brett Cannon · 10 years ago
  84. d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 10 years ago
  85. df4518c Issue #22453: Removed non-documented macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
  86. 4282656 Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
  87. 030e92d Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
  88. a5b335e Issue #20597, #21274: Remove unused definition of PATH_MAX on GNU/Hurd, by Victor Stinner · 10 years ago
  89. ce43f38 Issue #20597: Remove unused definition of PATH_MAX on Windows, MAXPATHLEN is by Victor Stinner · 10 years ago
  90. f6c69e6 #22734 marshal needs a lower stack depth for debug builds on Windows by Steve Dower · 10 years ago
  91. 3188f82 (Merge 3.4) Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception if by Victor Stinner · 10 years ago
  92. 5e78f4d Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception if by Victor Stinner · 10 years ago
  93. 81f68a7 Issue #22453: Warn against the use of leaking macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
  94. 0373a10 Issue #17636: Circular imports involving relative imports are now supported. by Antoine Pitrou · 10 years ago
  95. 5e8b04e Issue #21052: Don't raise ImportWarning for sys.meta_path or by Brett Cannon · 10 years ago
  96. 78184af Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  97. e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  98. 94262eb Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
  99. 0ddbf47 Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
  100. 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 10 years ago