summaryrefslogtreecommitdiffstats
path: root/Python/pylifecycle.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-28411: Isolate PyInterpreterState.modules (#3575)Eric Snow2017-09-141-28/+32
* bpo-30860: Fix a refleak. (#3567)Eric Snow2017-09-141-1/+9
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-141-41/+35
* bpo-30860: Fix a refleak. (#3506)Eric Snow2017-09-121-1/+9
* delete dead locale initialization code for windows (#3461)Benjamin Peterson2017-09-081-5/+1
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-081-31/+64
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-12/+0
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-061-57/+31
* correct initialization code (#3376)Benjamin Peterson2017-09-061-1/+1
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-061-31/+57
* bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)Eric Snow2017-09-041-34/+32
* Fix a small typo in a comment (#2863)Stéphane Wirtel2017-07-251-1/+1
* bpo-30647: Check nl_langinfo(CODESET) in locale coercion (GH-2374)Nick Coghlan2017-06-291-8/+11
* bpo-30565: Add PYTHONCOERCECLOCALE=warn runtime flag (GH-2260)Nick Coghlan2017-06-181-25/+40
* bpo-28180: Implementation for PEP 538 (#659)Nick Coghlan2017-06-111-7/+167
* bpo-30547: Fix multiple reference leaks (#1995)Stéphane Wirtel2017-06-081-1/+4
* Drop a duplicate line. (#1809)Eric Snow2017-05-251-2/+1
* bpo-22257: Private C-API for main interpreter initialization (PEP 432). (#1729)Eric Snow2017-05-241-13/+67
* bpo-22257: Private C-API for core runtime initialization (PEP 432). (#1772)Eric Snow2017-05-241-42/+180
* Improves test_underpth_nosite_file to reveal why it fails. (#1763)Steve Dower2017-05-231-1/+6
* bpo-22257: Small changes for PEP 432. (#1728)Eric Snow2017-05-231-5/+10
* bpo-29102: Add a unique ID to PyInterpreterState. (#1639)Eric Snow2017-05-231-0/+1
* bpo-30225: Fix is_valid_fd() on macOS Tiger (#1443)Victor Stinner2017-05-031-0/+9
* bpo-29770: remove outdated PYO related info (GH-590)Xiang Zhang2017-03-111-1/+1
* 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-101-3/+3
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-091-0/+1
* Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.Yury Selivanov2016-09-091-1/+7
* Issue #1602: Windows console doesn't input or print Unicode (PEP 528)Steve Dower2016-08-311-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-061-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-251-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