Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Fix indentation of continuation lines. | Georg Brandl | 2016-01-18 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #25923: Added more const qualifiers to signatures of static and ↵ | Serhiy Storchaka | 2015-12-25 | 1 | -2/+2 | |
| | | | | | | | | private functions. | |||||
* | | Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failure | Martin Panter | 2015-11-30 | 1 | -15/+37 | |
| | | ||||||
* | | Issue #18174: Explain why is_valid_fd() uses dup() instead of fstat() | Victor Stinner | 2015-09-29 | 1 | -0/+3 | |
|/ | ||||||
* | Issue #25160: Fix import_init() comments and messages | Victor Stinner | 2015-09-18 | 1 | -3/+4 | |
| | | | | import_init() imports the "_imp" module, not the "imp" module. | |||||
* | Merge 3.4 (create_stdio) | Victor Stinner | 2015-09-04 | 1 | -42/+37 | |
| | ||||||
* | Remove redundant check for tb != NULL to shut up Coverity . It has been set ↵ | Christian Heimes | 2015-04-16 | 1 | -1/+1 | |
| | | | | | | | to Py_None a couple of lines earlier. CID 1291697 (#1 of 1): Dereference before null check (REVERSE_INULL) check_after_deref: Null-checking tb suggests that it may be null, but it has already been dereferenced on all paths leading to the check. | |||||
* | Issue #23524: Replace _PyVerify_fd function with calls to ↵ | Steve Dower | 2015-04-12 | 1 | -4/+5 | |
| | | | | _set_thread_local_invalid_parameter_handler. | |||||
* | fix building without threads (closes #23877) | Benjamin Peterson | 2015-04-06 | 1 | -0/+4 | |
| | ||||||
* | Issue #22117: Add a new _PyTime_FromSeconds() function | Victor Stinner | 2015-04-03 | 1 | -3/+3 | |
| | | | | | Fix also _Py_InitializeEx_Private(): initialize time before initializing import, import_init() uses the _PyTime API (for thread locks). | |||||
* | (Merge 3.4) Issue #23571: Fix reentrant call to Py_FatalError() | Victor Stinner | 2015-03-25 | 1 | -17/+28 | |
| | | | | | | Flushing sys.stdout and sys.stderr in Py_FatalError() can call again Py_FatalError(). Add a reentrant flag to detect this case and just abort at the second call. | |||||
* | (Merge 3.4) Issue #23571: Py_FatalError() now tries to flush sys.stdout and | Victor Stinner | 2015-03-24 | 1 | -4/+26 | |
| | | | | | | | sys.stderr It should help to see exceptions when stderr if buffered: PyErr_Display() calls sys.stderr.write(), it doesn't write into stderr file descriptor directly. | |||||
* | (Merge 3.4) Issue #23571: Enhance Py_FatalError() | Victor Stinner | 2015-03-24 | 1 | -13/+59 | |
| | | | | | | | | | * Display the current Python stack if an exception was raised but the exception has no traceback * Disable faulthandler if an exception was raised (before it was only disabled if no exception was raised) * To display the current Python stack, call PyGILState_GetThisThreadState() which works even if the GIL was released | |||||
* | Fixed few compiler warnings. | Serhiy Storchaka | 2015-02-16 | 1 | -1/+1 | |
| | ||||||
* | Closes #22869: Move PyOS_CheckStack back to pythonrun.c | Zachary Ware | 2014-11-22 | 1 | -38/+0 | |
| | ||||||
* | Issue #22869: Split pythonrun into two modules | Nick Coghlan | 2014-11-20 | 1 | -0/+1540 | |
- interpreter startup and shutdown code moved to a new pylifecycle.c module - Py_OptimizeFlag moved into the new module with the other global flags |