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
*
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
*
|
Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_*
Antoine Pitrou
2011-04-27
1
-0/+1
|
\
\
|
|
/
|
*
Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_*
Antoine Pitrou
2011-04-27
1
-0/+1
*
|
Issue #10914: Initialize correctly the filesystem codec when creating a new
Victor Stinner
2011-04-26
1
-0/+1
*
|
PyGILState_Ensure(), PyGILState_Release(), PyGILState_GetThisThreadState() are
Victor Stinner
2011-04-26
1
-3/+7
|
/
*
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-1/+19
*
Make (most of) Python's tests pass under Thread Sanitizer.
Jeffrey Yasskin
2010-05-03
1
-2/+5
*
Merged revisions 78638 via svnmerge from
Victor Stinner
2010-03-03
1
-0/+2
*
Merge in the new GIL.
Antoine Pitrou
2009-11-10
1
-0/+2
*
Issue 3723: Fixed initialization of subinterpreters
Christian Heimes
2008-10-30
1
-0/+1
*
Implement PEP 3121: new module initialization and finalization API.
Martin v. Löwis
2008-06-11
1
-0/+3
*
Make identifiers str (not str8) objects throughout.
Martin v. Löwis
2007-06-10
1
-0/+4
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-0/+1
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-0/+5
*
Add comments about PyThreadState and the usage of its fields.
Brett Cannon
2005-06-25
1
-1/+5
*
Patch #510695: Add TSC profiling for the VM.
Martin v. Löwis
2004-06-08
1
-0/+3
*
Added a comment about the unreferenced PyThreadState.tick_counter
Tim Peters
2004-03-29
1
-11/+18
*
Enable the profiling of C functions (builtins and extensions)
Nicholas Bastin
2004-03-24
1
-0/+3
*
SF patch #906501: Fix typos in pystate.h comments
Raymond Hettinger
2004-03-13
1
-2/+2
*
Add PyThreadState_SetAsyncExc(long, PyObject *).
Guido van Rossum
2003-06-28
1
-0/+4
*
New PyGILState_ API - implements pep 311, from patch 684256.
Mark Hammond
2003-04-19
1
-0/+46
*
Fixed SF bug #663074. The codec system was using global static
Gustavo Niemeyer
2003-03-19
1
-0/+4
*
- PyEval_GetFrame() is now declared to return a PyFrameObject *
Guido van Rossum
2003-02-19
1
-1/+3
*
Assorted patches from Armin Rigo:
Michael W. Hudson
2002-11-08
1
-0/+5
*
replace thread state objects' ticker and checkinterval fields with two
Skip Montanaro
2002-09-03
1
-2/+0
*
Excise DL_EXPORT from Include.
Mark Hammond
2002-08-12
1
-15/+15
*
Add a low-level API to access interpreters, for David Beazley.
Guido van Rossum
2001-07-19
1
-0/+7
*
Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags.
Martin v. Löwis
2001-07-18
1
-0/+3
*
This change adjusts the profiling/tracing support so that the common
Fred Drake
2001-07-03
1
-0/+1
*
Revise the interface to the profiling and tracing support for the
Fred Drake
2001-06-27
1
-2/+13
*
Add a new API, PyThreadState_DeleteCurrent() that combines
Guido van Rossum
2001-01-23
1
-0/+3
[next]