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-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
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-81/+100
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
1
-29/+1
*
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Eric Snow
2017-09-06
1
-107/+88
*
correct initialization code (#3376)
Benjamin Peterson
2017-09-06
1
-2/+1
*
bpo-30860: Consolidate stateful runtime globals. (#2594)
Eric Snow
2017-09-06
1
-88/+108
*
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
Eric Snow
2017-09-04
1
-2/+0
*
bpo-30604: clean up co_extra support (#2144)
Dino Viehland
2017-06-21
1
-1/+1
*
Doc nits for bpo-16500 (#1841)
Antoine Pitrou
2017-05-28
1
-1/+1
*
bpo-16500: Allow registering at-fork handlers (#1715)
Antoine Pitrou
2017-05-27
1
-0/+10
*
bpo-22257: Small changes for PEP 432. (#1728)
Eric Snow
2017-05-23
1
-0/+16
*
bpo-29102: Add a unique ID to PyInterpreterState. (#1639)
Eric Snow
2017-05-23
1
-0/+37
*
bpo-30395 _PyGILState_Reinit deadlock fix (#1734)
Jason Fried
2017-05-22
1
-0/+4
*
bpo-6532: Make the thread id an unsigned integer. (#781)
Serhiy Storchaka
2017-03-23
1
-2/+3
*
remove ceval timestamp support
Benjamin Peterson
2016-09-09
1
-3/+0
*
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
Yury Selivanov
2016-09-09
1
-0/+5
*
Add the co_extra field and accompanying APIs to code objects.
Brett Cannon
2016-09-07
1
-0/+1
*
replace Py_(u)intptr_t with the c99 standard types
Benjamin Peterson
2016-09-06
1
-1/+1
*
Implement the frame evaluation API aspect of PEP 523.
Brett Cannon
2016-09-05
1
-0/+1
*
Issue #27587: Merge from 3.5
Berker Peksag
2016-08-22
1
-2/+4
|
\
|
*
Issue #27587: Move null pointer check earlier in _PyState_AddModule()
Berker Peksag
2016-08-22
1
-2/+4
|
*
Use Py_uintptr_t for atomic pointers
Victor Stinner
2016-01-22
1
-23/+24
*
|
Issue #22557: Now importing already imported modules is up to 2.5 times faster.
Serhiy Storchaka
2016-08-02
1
-0/+2
*
|
Issue #26932: Fixed support of RTLD_* constants defined as enum values,
Serhiy Storchaka
2016-05-04
1
-2/+2
*
|
faulthandler now works in non-Python threads
Victor Stinner
2016-03-16
1
-0/+6
*
|
Add more checks on the GIL
Victor Stinner
2016-03-14
1
-5/+19
*
|
Use Py_uintptr_t for atomic pointers
Victor Stinner
2016-01-22
1
-23/+24
*
|
Merge 3.5
Victor Stinner
2016-01-20
1
-13/+20
|
\
\
|
|
/
|
*
Add _PyThreadState_UncheckedGet()
Victor Stinner
2016-01-20
1
-13/+20
*
|
Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failure
Martin Panter
2015-11-30
1
-1/+1
|
/
*
Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully
Yury Selivanov
2015-06-02
1
-0/+1
*
PEP 489: Multi-phase extension module initialization
Nick Coghlan
2015-05-23
1
-2/+17
*
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-0/+4
*
Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_i...
Steve Dower
2015-04-12
1
-11/+0
*
Removed unintentional trailing spaces in non-external and non-generated C files.
Serhiy Storchaka
2015-03-18
1
-1/+1
[next]