- 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
- 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
- f86d1fd merge 3.4 (#21295) by Benjamin Peterson · 10 years ago
- 7a66fc2 revert lineno and col_offset changes from #16795 (closes #21295) by Benjamin Peterson · 10 years ago
- 13a1c60 Merge 3.4 (generator) by Victor Stinner · 10 years ago
- 26f7b8a Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx(). by Victor Stinner · 10 years ago
- aaef05f Fixed memory leak in marshal. by Serhiy Storchaka · 10 years ago
- 000daae Fixed memory leak in marshal. by Serhiy Storchaka · 10 years ago
- 07985ef Issue #22286: The "backslashreplace" error handlers now works with by Serhiy Storchaka · 10 years ago
- 82e07b9 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
- d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
- 02d8454 Issue #23014: Make importlib.abc.Loader.create_module() required when by Brett Cannon · 10 years ago
- f869341 merge 3.4 (#23165) by Benjamin Peterson · 10 years ago
- 10ecaa2 merge 3.3 (closes #23165) by Benjamin Peterson · 10 years ago
- 72c2a0f merge 3.2 (closes #23165) by Benjamin Peterson · 10 years ago
- f18bf6f add some overflow checks before multiplying (closes #23165) by Benjamin Peterson · 10 years ago
- 52074ac merge 3.4 by Benjamin Peterson · 10 years ago
- a453749 merge 3.3 by Benjamin Peterson · 10 years ago
- 7919acb merge 3.2 by Benjamin Peterson · 10 years ago
- 47e782a update for copyright for 2015 by Benjamin Peterson · 10 years ago
- fe02e39 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
- 4d6a3d6 Issue #22585: On OpenBSD 5.6 and newer, os.urandom() now calls getentropy(), by Victor Stinner · 10 years ago
- 03a144b #22980 Adds platform and version tags to .pyd files by Steve Dower · 10 years ago
- cd441c4 Update Python/importlib.h by Zachary Ware · 10 years ago
- 7ced53c merge 3.4 (#23048) by Benjamin Peterson · 10 years ago
- 3cda0ed pop the loop block even for infinite while loops (closes #23048) by Benjamin Peterson · 10 years ago
- 0b881dd Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64, by Victor Stinner · 10 years ago
- b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
- 9e4db75 - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 10 years ago
- 2a41385 - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 10 years ago
- 56a6d85 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
- 60b33cc Merge 3.4 (ceval.c) by Victor Stinner · 10 years ago
- 5db1bb8 Issue #22696: Add function :func:`sys.is_finalizing` to know about interpreter shutdown. by Antoine Pitrou · 10 years ago
- 92bf919 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
- d32d4ae - Issue #22966: Fix __pycache__ pyc file name clobber when pyc_compile is by Barry Warsaw · 10 years ago
- 83000a4 Removed duplicated words in in comments and docs. by Serhiy Storchaka · 10 years ago
- 3663b58 correct assertion by Benjamin Peterson · 10 years ago
- 810aa6d fix variable name by Benjamin Peterson · 10 years ago
- aacfccc Issue #19676: Fixed integer overflow issue in "namereplace" error handler. by Serhiy Storchaka · 10 years ago
- 166ebc4 Issue #19676: Added the "namereplace" error handler. by Serhiy Storchaka · 10 years ago
- da8cef4 Issue #22934: Update the comment to mention Programs/_freeze_importlib.c. by Berker Peksag · 10 years ago
- d3c53b6 Update importlib.h by Antoine Pitrou · 10 years ago
- c4821d6 Closes #22869: Move PyOS_CheckStack back to pythonrun.c by Zachary Ware · 10 years ago
- 9b59dd4 Issue #22869: Remove duplicate stack check from pythonrun.c by Steve Dower · 10 years ago
- b6e2556 Issue #22834: Have import suppress FileNotFoundError when the current by Brett Cannon · 10 years ago
- d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 10 years ago
- df4518c Issue #22453: Removed non-documented macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
- 4282656 Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
- 030e92d Issue #22193: Fixed integer overflow error in sys.getsizeof(). by Serhiy Storchaka · 10 years ago
- a5b335e Issue #20597, #21274: Remove unused definition of PATH_MAX on GNU/Hurd, by Victor Stinner · 10 years ago
- ce43f38 Issue #20597: Remove unused definition of PATH_MAX on Windows, MAXPATHLEN is by Victor Stinner · 10 years ago
- f6c69e6 #22734 marshal needs a lower stack depth for debug builds on Windows by Steve Dower · 10 years ago
- 3188f82 (Merge 3.4) Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception if by Victor Stinner · 10 years ago
- 5e78f4d Issue #22762: Fix _Py_DisplaySourceLine(), clear the exception if by Victor Stinner · 10 years ago
- 81f68a7 Issue #22453: Warn against the use of leaking macro PyObject_REPR(). by Serhiy Storchaka · 10 years ago
- 0373a10 Issue #17636: Circular imports involving relative imports are now supported. by Antoine Pitrou · 10 years ago
- 5e8b04e Issue #21052: Don't raise ImportWarning for sys.meta_path or by Brett Cannon · 10 years ago
- 78184af Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
- e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
- 94262eb Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
- 0ddbf47 Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in exception tracebacks. by Antoine Pitrou · 10 years ago
- 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 10 years ago
- edc3cba Copyright year update, add version to licenses. by Georg Brandl · 10 years ago
- 8d1e18e Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
- 4b16818 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
- 2e37409 Issue #22518: Fixed integer overflow issues in "backslashreplace", by Serhiy Storchaka · 10 years ago
- b86f08f faulthandler: enhance dump_ascii() to escape also non-printable ASCII by Victor Stinner · 10 years ago
- 0676a40 Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` but accepting a `va_list` argument. by Antoine Pitrou · 10 years ago
- 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 10 years ago
- daa910a Update importlib.h frozen bytecode (changed due to commit c0ca9d32aed4). by Georg Brandl · 10 years ago
- cbcbfdf Fixed reference leak in the "backslashreplace" error handler. by Serhiy Storchaka · 10 years ago
- 8aa8c47 Fixed reference leak in the "backslashreplace" error handler. by Serhiy Storchaka · 10 years ago
- e7811fc Closes #11471: avoid generating a JUMP_FORWARD instruction at the end of an if-block if there is no else-clause. by Antoine Pitrou · 10 years ago
- 87538e7 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
- cb0a006 Issue #4180: The warnings registries are now reset when the filters are modified. by Antoine Pitrou · 10 years ago
- a0f3375 Merge fix for issue #22166 from 3.4 by Nick Coghlan · 10 years ago
- 8fad167 Issue #22166: clear codec caches in test_codecs by Nick Coghlan · 10 years ago
- d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
- 5789cfb Issue #22043: Fix pymonotonic(), use tv_usec=-1 as a marker to skip by Victor Stinner · 10 years ago
- ae58649 Issue #22043: time.monotonic() is now always available by Victor Stinner · 10 years ago
- 9bb758c Issue #22043: Fix _PyTime_gettimeofday() if HAVE_GETTIMEOFDAY by Victor Stinner · 10 years ago
- 282124b Closes #22258: Fix the the internal function set_inheritable() on Illumos. by Victor Stinner · 10 years ago
- 8257b62 (Merge 3.4) Closes #22258: Fix the the internal function set_inheritable() on by Victor Stinner · 10 years ago
- 0011124 Issue #22043: _PyTime_Init() now checks if the system clock works. by Victor Stinner · 10 years ago
- 7efb833 Issue #22287: On UNIX, _PyTime_gettimeofday() now uses by Victor Stinner · 10 years ago
- 049e509 Issue #22207: Fix "comparison between signed and unsigned integers" warning in by Victor Stinner · 10 years ago
- daca3d7 Issue #22206: Using pthread, PyThread_create_key() now sets errno to ENOMEM and by Victor Stinner · 10 years ago
- f9e227e Issue #20184: Add signature introspection for 30 of the builtins by Nick Coghlan · 10 years ago
- 98ea54c Issue #22156: Fix "comparison between signed and unsigned integers" compiler by Victor Stinner · 10 years ago
- 121be0d Issue #22193: Added private function _PySys_GetSizeOf() needed to implement by Serhiy Storchaka · 10 years ago
- 547d3bc Issue #22193: Added private function _PySys_GetSizeOf() needed to implement by Serhiy Storchaka · 10 years ago
- 1151c8b Closes #22146: Merge with 3.4 by Zachary Ware · 10 years ago
- 9b33872 Issue #22146: Fix typo in __build_class__ error message by Zachary Ware · 10 years ago
- f6a271a Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename by Victor Stinner · 10 years ago
- 1db9e7b Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get and by Victor Stinner · 10 years ago
- 973fe0b Issue #18093: Factor out the programs that embed the runtime by Nick Coghlan · 10 years ago
- d8089e0 Issue #16382: Improve exception message of warnings.warn() for bad category. by Berker Peksag · 10 years ago
- ac7d80c (Merge 3.4) Issue #21925: PyImport_Cleanup(): Remove unused parameter in by Victor Stinner · 10 years ago
- ab826d1 Issue #21925: PyImport_Cleanup(): Remove unused parameter in by Victor Stinner · 10 years ago
- 744a119 Issue #21891: remove extraneous semicolon. by Ned Deily · 11 years ago