summaryrefslogtreecommitdiff
path: root/Python/pylifecycle.c
Commit message (Expand)AuthorAgeFilesLines
* Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-3/+3
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
* Issue #26920: Fix not getting the locale's charset upon initializing the inte...Xavier de Gaye2016-11-161-1/+1
* Don't run garbage collection on interpreter exit if it was explicitly disabled?ukasz Langa2016-09-091-3/+3
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-0/+1
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-081-1/+7
* Issue #1602: Windows console doesn't input or print Unicode (PEP 528)Steve Dower2016-08-301-0/+18
* Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower2016-09-081-1/+1
* Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529)Steve Dower2016-09-081-0/+20
* Avoid calling functions with an empty string as format stringVictor Stinner2016-09-051-5/+5
* Issue #27574: Decreased an overhead of parsing keyword arguments in functionsSerhiy Storchaka2016-08-141-0/+1
* Issue #22557: Now importing already imported modules is up to 2.5 times faster.Serhiy Storchaka2016-08-021-0/+5
* Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,Serhiy Storchaka2016-07-031-1/+1
* Issue #27336: Fix compilation on WindowsVictor Stinner2016-06-171-2/+2
* Issue #27336: Fix compilation failures --without-threadsBerker Peksag2016-06-171-0/+2
* Issue #22747: Workaround for systems without langinfo.h.Stefan Krah2016-04-261-0/+2
* Issue #25339: PYTHONIOENCODING now has priority over locale in setting theSerhiy Storchaka2016-04-101-10/+9
|\
| * Issue #25339: PYTHONIOENCODING now has priority over locale in setting theSerhiy Storchaka2016-04-101-10/+9
| * Py_FatalError: disable faulthandler earlierVictor Stinner2016-03-161-5/+5
| * Fix Py_FatalError() if called without the GILVictor Stinner2016-03-141-34/+50
* | Py_FatalError: disable faulthandler earlierVictor Stinner2016-03-161-5/+5
* | faulthandler now works in non-Python threadsVictor Stinner2016-03-161-15/+1
* | Add more checks on the GILVictor Stinner2016-03-141-0/+5
* | Fix Py_FatalError() if called without the GILVictor Stinner2016-03-141-34/+50
* | Add PYTHONMALLOC env varVictor Stinner2016-03-141-3/+6
* | Fix indentation of continuation lines.Georg Brandl2016-01-181-1/+1
* | Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-2/+2
* | Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failureMartin Panter2015-11-301-15/+37
* | Issue #18174: Explain why is_valid_fd() uses dup() instead of fstat()Victor Stinner2015-09-291-0/+3
|/
* Issue #25160: Fix import_init() comments and messagesVictor Stinner2015-09-181-3/+4
* Merge 3.4 (create_stdio)Victor Stinner2015-09-041-42/+37
* Remove redundant check for tb != NULL to shut up Coverity . It has been set t...Christian Heimes2015-04-161-1/+1
* Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_i...Steve Dower2015-04-121-4/+5
* fix building without threads (closes #23877)Benjamin Peterson2015-04-061-0/+4
* Issue #22117: Add a new _PyTime_FromSeconds() functionVictor Stinner2015-04-031-3/+3
* (Merge 3.4) Issue #23571: Fix reentrant call to Py_FatalError()Victor Stinner2015-03-251-17/+28
* (Merge 3.4) Issue #23571: Py_FatalError() now tries to flush sys.stdout andVictor Stinner2015-03-241-4/+26
* (Merge 3.4) Issue #23571: Enhance Py_FatalError()Victor Stinner2015-03-241-13/+59
* Fixed few compiler warnings.Serhiy Storchaka2015-02-161-1/+1
* Closes #22869: Move PyOS_CheckStack back to pythonrun.cZachary Ware2014-11-211-38/+0
* Issue #22869: Split pythonrun into two modulesNick Coghlan2014-11-201-0/+1540