summaryrefslogtreecommitdiff
path: root/Python/pystate.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-34408: Prevent a null pointer dereference and resource leakage in `...Pablo Galindo2019-05-101-6/+10
* bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10...Miss Islington (bot)2018-12-041-0/+1
* bpo-33612: Remove PyThreadState_Clear() assertion (GH-7069) (GH-7074)Miss Islington (bot)2018-05-231-1/+0
* bpo-32604: Remove xid registry. (#6813)Eric Snow2018-05-151-258/+0
* bpo-33005: Fix _PyGILState_Reinit() (GH-6001)Miss Islington (bot)2018-03-061-4/+23
* bpo-32604: Swap threads only if the interpreter is different. (gh-5783)Miss Islington (bot)2018-02-201-6/+14
* bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-...Miss Islington (bot)2018-02-161-1/+57
* bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (GH-5507)Miss Islington (bot)2018-02-021-0/+1
* bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh...Eric Snow2018-01-291-1/+274
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-221-0/+9
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-211-0/+2
* bpo-31901: atexit callbacks should be run at subinterpreter shutdown (#4611)Marcel Plch2017-12-201-0/+2
* bpo-32030: Add _PyCoreConfig_Copy() (#4874)Victor Stinner2017-12-151-0/+2
* bpo-20891: Fix PyGILState_Ensure() (#4650)Victor Stinner2017-11-301-6/+18
* bpo-32030: Rework memory allocators (#4625)Victor Stinner2017-11-291-7/+19
* bpo-32096: Remove obj and mem from _PyRuntime (#4532)Victor Stinner2017-11-241-2/+0
* bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504)Victor Stinner2017-11-231-40/+45
* bpo-32043: New "developer mode": "-X dev" option (#4413)Victor Stinner2017-11-161-0/+8
* bpo-32030: Enhance Py_Main() (#4412)Victor Stinner2017-11-151-3/+5
* bpo-32030: Split Py_Main() into subfunctions (#4399)Victor Stinner2017-11-151-7/+9
* Fix trailing whitespaces in C files. (#4130)Serhiy Storchaka2017-10-261-1/+1
* bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098)pdox2017-10-251-0/+1
* Move exc state to generator. Fixes bpo-25612 (#1773)Mark Shannon2017-10-221-6/+15
* bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)Masayuki Yamamoto2017-10-061-33/+38
* bpo-30860: Fix a refleak. (#3567)Eric Snow2017-09-141-2/+0
* bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)Eric Snow2017-09-131-0/+4
* bpo-30860: Fix a refleak. (#3506)Eric Snow2017-09-111-2/+0
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-81/+100
* bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou2017-09-071-29/+1
* Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)Eric Snow2017-09-051-107/+88
* correct initialization code (#3376)Benjamin Peterson2017-09-051-2/+1
* bpo-30860: Consolidate stateful runtime globals. (#2594)Eric Snow2017-09-051-88/+108
* bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)Eric Snow2017-09-041-2/+0
* bpo-30604: clean up co_extra support (#2144)Dino Viehland2017-06-211-1/+1
* Doc nits for bpo-16500 (#1841)Antoine Pitrou2017-05-281-1/+1
* bpo-16500: Allow registering at-fork handlers (#1715)Antoine Pitrou2017-05-271-0/+10
* bpo-22257: Small changes for PEP 432. (#1728)Eric Snow2017-05-221-0/+16
* bpo-29102: Add a unique ID to PyInterpreterState. (#1639)Eric Snow2017-05-221-0/+37
* bpo-30395 _PyGILState_Reinit deadlock fix (#1734)Jason Fried2017-05-221-0/+4
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-231-2/+3
* remove ceval timestamp supportBenjamin Peterson2016-09-091-3/+0
* Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-081-0/+5
* Add the co_extra field and accompanying APIs to code objects.Brett Cannon2016-09-071-0/+1
* replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson2016-09-061-1/+1
* Implement the frame evaluation API aspect of PEP 523.Brett Cannon2016-09-051-0/+1
* Issue #27587: Merge from 3.5Berker Peksag2016-08-221-2/+4
|\
| * Issue #27587: Move null pointer check earlier in _PyState_AddModule()Berker Peksag2016-08-221-2/+4
| * Use Py_uintptr_t for atomic pointersVictor Stinner2016-01-221-23/+24
* | Issue #22557: Now importing already imported modules is up to 2.5 times faster.Serhiy Storchaka2016-08-021-0/+2
* | Issue #26932: Fixed support of RTLD_* constants defined as enum values,Serhiy Storchaka2016-05-041-2/+2