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
/
Include
/
pystate.h
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098)
pdox
2017-10-26
1
-0/+2
*
Move exc state to generator. Fixes bpo-25612 (#1773)
Mark Shannon
2017-10-22
1
-3/+24
*
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/+3
*
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
-14/+16
*
bpo-31344: Per-frame control of trace events (GH-3417)
Nick Coghlan
2017-09-08
1
-1/+6
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
1
-4/+0
*
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Eric Snow
2017-09-06
1
-16/+14
*
bpo-30860: Consolidate stateful runtime globals. (#2594)
Eric Snow
2017-09-06
1
-14/+16
*
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
Eric Snow
2017-09-04
1
-1/+0
*
bpo-30604: clean up co_extra support (#2144)
Dino Viehland
2017-06-21
1
-3/+4
*
bpo-16500: Allow registering at-fork handlers (#1715)
Antoine Pitrou
2017-05-27
1
-0/+5
*
bpo-22257: Private C-API for main interpreter initialization (PEP 432). (#1729)
Eric Snow
2017-05-24
1
-0/+13
*
bpo-22257: Private C-API for core runtime initialization (PEP 432). (#1772)
Eric Snow
2017-05-24
1
-0/+11
*
bpo-22257: Small changes for PEP 432. (#1728)
Eric Snow
2017-05-23
1
-0/+1
*
bpo-29102: Add a unique ID to PyInterpreterState. (#1639)
Eric Snow
2017-05-23
1
-0/+9
*
bpo-6532: Make the thread id an unsigned integer. (#781)
Serhiy Storchaka
2017-03-23
1
-2/+2
*
Issue #26900: Excluded underscored names and other private API from limited API.
Serhiy Storchaka
2016-09-11
1
-0/+10
*
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/+3
*
Add the co_extra field and accompanying APIs to code objects.
Brett Cannon
2016-09-07
1
-0/+7
*
Implement the frame evaluation API aspect of PEP 523.
Brett Cannon
2016-09-05
1
-2/+5
*
Issue #22557: Now importing already imported modules is up to 2.5 times faster.
Serhiy Storchaka
2016-08-02
1
-0/+1
*
Merge 3.5 (pystate.h)
Victor Stinner
2016-03-25
1
-2/+0
|
\
|
*
pystate.h: fix _PyThreadState_UncheckedGet()
Victor Stinner
2016-03-24
1
-2/+0
*
|
faulthandler now works in non-Python threads
Victor Stinner
2016-03-16
1
-4/+12
*
|
Add more checks on the GIL
Victor Stinner
2016-03-14
1
-0/+4
|
/
*
Add _PyThreadState_UncheckedGet()
Victor Stinner
2016-01-20
1
-0/+10
*
Issue #25150: Hide the private _Py_atomic_xxx symbols from the public
Victor Stinner
2015-09-18
1
-12/+5
*
Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully
Yury Selivanov
2015-06-02
1
-0/+1
*
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-0/+2
*
Issue #23644: Fix issues with C++ when compiling Python extensions
Victor Stinner
2015-03-17
1
-3/+7
*
Issue #19255: The builtins module is restored to initial value before
Serhiy Storchaka
2014-02-10
1
-1/+1
*
Issue #19526: Exclude all new API from the stable ABI.
Martin v. Löwis
2014-01-03
1
-0/+2
*
Close #19199: Remove ``PyThreadState.tick_counter`` field
Victor Stinner
2013-10-09
1
-10/+0
*
Issue #18808: Thread.join() now waits for the underlying thread state to be d...
Antoine Pitrou
2013-09-07
1
-0/+26
*
Issue #10241: Clear extension module dict copies at interpreter shutdown.
Antoine Pitrou
2013-08-10
1
-0/+3
*
Backout 62658d9d8926 (issue #10241): it causes a crash at shutdown when deall...
Antoine Pitrou
2013-08-02
1
-3/+0
*
Issue #10241: Clear extension module dict copies at interpreter shutdown.
Antoine Pitrou
2013-08-01
1
-0/+3
*
Issue #17912: Use a doubly linked-list for thread states.
Charles-Francois Natali
2013-05-08
1
-0/+1
*
Issue #17094: Clear stale thread states after fork().
Antoine Pitrou
2013-05-05
1
-0/+1
*
Issue #17522: Add the PyGILState_Check() API.
Kristján Valur Jónsson
2013-03-23
1
-0/+5
*
Issue #13992: The trashcan mechanism is now thread-safe. This eliminates
Antoine Pitrou
2012-09-05
1
-0/+3
*
Issue #15042: Add PyState_AddModule and PyState_RemoveModule.
Martin v. Löwis
2012-06-22
1
-0/+5
*
Issues #13959, 14647: Re-implement imp.reload() in Lib/imp.py.
Brett Cannon
2012-04-29
1
-1/+0
*
Issue #2377: Make importlib the implementation of __import__().
Brett Cannon
2012-04-14
1
-0/+2
*
#10741: merge with 3.2
Sandro Tosi
2011-08-07
1
-1/+1
|
\
|
*
#10741: add documentation for PyGILState_GetThisThreadState()
Sandro Tosi
2011-08-07
1
-1/+1
|
*
Issue #10914: Initialize correctly the filesystem codec when creating a new
Victor Stinner
2011-04-26
1
-0/+1
[prev]
[next]