index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
pystate.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-36333: Fix leak _PyRuntimeState_Fini (GH-12400)
Stéphane Wirtel
2019-03-19
1
-0/+5
*
bpo-36124: Add PyInterpreterState.dict. (gh-12132)
Eric Snow
2019-03-15
1
-0/+14
*
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...
Eric Snow
2019-03-15
1
-2/+24
*
bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)
Eric Snow
2019-03-09
1
-1/+28
*
bpo-33608: Minor cleanup related to pending calls. (gh-12247)
Eric Snow
2019-03-09
1
-35/+28
*
Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...
Victor Stinner
2019-03-04
1
-85/+65
*
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...
Eric Snow
2019-03-01
1
-2/+24
*
bpo-33608: Use _Py_AddPendingCall() in _PyCrossInterpreterData_Release(). (gh...
Eric Snow
2019-03-01
1
-39/+42
*
bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111)
Victor Stinner
2019-03-01
1
-0/+1
*
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...
Eric Snow
2019-02-24
1
-25/+20
*
bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731)
Eric Snow
2019-02-23
1
-0/+11
*
bpo-35993: Fix _PyInterpreterState_DeleteExceptMain() (GH-11852)
Stéphane Wirtel
2019-02-20
1
-2/+5
*
bpo-35972: _xxsubinterpreters: Fix potential integer truncation on 32-bit in ...
Alexey Izbyshev
2019-02-12
1
-2/+6
*
bpo-34569: Fix subinterpreter 32-bit ABI, pystate.c/_new_long_object() (gh-9...
Michael Felt
2019-01-11
1
-1/+1
*
bpo-35414: Add a missing Py_INCREF(Py_None) in PyState_RemoveModule(). (GH-10...
Zackery Spytz
2018-12-05
1
-0/+1
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-2/+2
*
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner
2018-11-01
1
-9/+9
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-2/+2
*
bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249)
Victor Stinner
2018-10-31
1
-0/+1
*
bpo-35081: Cleanup pystate.c and pystate.h (GH-10240)
Victor Stinner
2018-10-30
1
-23/+20
*
bpo-34651: Only allow the main interpreter to fork. (gh-9279)
Eric Snow
2018-09-14
1
-0/+38
*
bpo-34408: Prevent a null pointer dereference and resource leakage in `PyInte...
Pablo Galindo
2018-08-31
1
-6/+10
*
bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592)
Victor Stinner
2018-08-03
1
-4/+18
*
bpo-34170: Add _PyCoreConfig.bytes_warning (GH-8447)
Victor Stinner
2018-07-24
1
-2/+4
*
bpo-33615: Re-enable a subinterpreter test. (gh-7251)
Eric Snow
2018-06-02
1
-18/+37
*
bpo-33612: Remove PyThreadState_Clear() assertion (#7069)
Victor Stinner
2018-05-23
1
-1/+0
*
bpo-32604: Improve subinterpreter tests. (#6914)
Eric Snow
2018-05-16
1
-3/+77
*
bpo-33005: Fix _PyGILState_Reinit() (#6001)
Victor Stinner
2018-03-06
1
-4/+23
*
bpo-32604: Swap threads only if the interpreter is different. (gh-5778)
Eric Snow
2018-02-20
1
-6/+14
*
bpo-32604: Clean up created subinterpreters before runtime finalization. (gh-...
Eric Snow
2018-02-17
1
-1/+57
*
bpo-32604: Fix memory leaks in the new _xxsubinterpreters module. (#5507)
Eric Snow
2018-02-03
1
-0/+1
*
bpo-32604: Expose the subinterpreters C-API in a "private" stdlib module. (gh...
Eric Snow
2018-01-30
1
-1/+274
*
bpo-32436: Implement PEP 567 (#5027)
Yury Selivanov
2018-01-23
1
-0/+9
*
bpo-32591: Add native coroutine origin tracking (#5250)
Nathaniel J. Smith
2018-01-21
1
-0/+2
*
bpo-31901: atexit callbacks should be run at subinterpreter shutdown (#4611)
Marcel Plch
2017-12-20
1
-0/+2
*
bpo-32030: Add _PyCoreConfig_Copy() (#4874)
Victor Stinner
2017-12-15
1
-0/+2
*
bpo-20891: Fix PyGILState_Ensure() (#4650)
Victor Stinner
2017-11-30
1
-6/+18
*
bpo-32030: Rework memory allocators (#4625)
Victor Stinner
2017-11-29
1
-7/+19
*
bpo-32096: Remove obj and mem from _PyRuntime (#4532)
Victor Stinner
2017-11-24
1
-2/+0
*
bpo-32030: Add _PyCoreConfig.module_search_path_env (#4504)
Victor Stinner
2017-11-22
1
-40/+45
*
bpo-32043: New "developer mode": "-X dev" option (#4413)
Victor Stinner
2017-11-16
1
-0/+8
*
bpo-32030: Enhance Py_Main() (#4412)
Victor Stinner
2017-11-16
1
-3/+5
*
bpo-32030: Split Py_Main() into subfunctions (#4399)
Victor Stinner
2017-11-15
1
-7/+9
*
Fix trailing whitespaces in C files. (#4130)
Serhiy Storchaka
2017-10-26
1
-1/+1
*
bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098)
pdox
2017-10-26
1
-0/+1
*
Move exc state to generator. Fixes bpo-25612 (#1773)
Mark Shannon
2017-10-22
1
-6/+15
*
bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)
Masayuki Yamamoto
2017-10-06
1
-33/+38
*
bpo-30860: Fix a refleak. (#3567)
Eric Snow
2017-09-14
1
-2/+0
*
bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565)
Eric Snow
2017-09-14
1
-0/+4
*
bpo-30860: Fix a refleak. (#3506)
Eric Snow
2017-09-12
1
-2/+0
[next]