| Commit message (Expand) | Author | Age | Files | Lines |
* | Forward port bugfix: | Michael W. Hudson | 2005-09-30 | 1 | -0/+4 |
|
|
* | Fix bug: | Michael W. Hudson | 2005-06-20 | 1 | -15/+53 |
|
|
* | You can have more than one thread state for a thread if they | Michael W. Hudson | 2005-06-16 | 1 | -1/+1 |
|
|
* | Fix: | Michael W. Hudson | 2005-04-18 | 1 | -1/+1 |
|
|
* | Close the discussion in SF bug 1069160. | Guido van Rossum | 2005-02-08 | 1 | -1/+3 |
|
|
* | SF bug 1061968: threads: segfault or Py_FatalError at exit | Tim Peters | 2004-11-08 | 1 | -13/+12 |
|
|
* | Revert rev 2.35. It was based on erroneous reasoning -- the current | Tim Peters | 2004-10-10 | 1 | -15/+8 |
|
|
* | PyInterpreterState_New(), PyThreadState_New(): use malloc/free directly. | Tim Peters | 2004-10-10 | 1 | -4/+16 |
|
|
* | PyGILState_Release(): If we need to delete the TLS entry for this thread, | Tim Peters | 2004-10-09 | 1 | -8/+15 |
|
|
* | _PyGILState_Init(), PyGILState_Ensure(): Since PyThread_set_key_value() | Tim Peters | 2004-10-09 | 1 | -2/+5 |
|
|
* | Style guide & consistency changes. No semantic changes. | Tim Peters | 2004-10-09 | 1 | -23/+29 |
|
|
* | Trim trailing whitespace. | Tim Peters | 2004-10-09 | 1 | -8/+8 |
|
|
* | Patch #510695: Add TSC profiling for the VM. | Martin v. Löwis | 2004-06-08 | 1 | -0/+3 |
|
|
* | Changed random calls to PyThreadState_Get() to use the macro | Nicholas Bastin | 2004-03-24 | 1 | -1/+1 |
|
|
* | Initialize thread_id to 0 in unthreaded build. Fixes #770247. | Martin v. Löwis | 2003-07-13 | 1 | -0/+4 |
|
|
* | Add PyThreadState_SetAsyncExc(long, PyObject *). | Guido van Rossum | 2003-06-28 | 1 | -0/+30 |
|
|
* | Patch #729300: Disable error message if Python is not built for threads. | Martin v. Löwis | 2003-05-01 | 1 | -1/+1 |
|
|
* | New PyGILState_ API - implements pep 311, from patch 684256. | Mark Hammond | 2003-04-19 | 1 | -1/+140 |
|
|
* | - pythunrun.c, Py_Finalize(): move the call to _Py_PrintReferences() | Guido van Rossum | 2003-04-15 | 1 | -5/+9 |
|
|
* | Fixed SF bug #663074. The codec system was using global static | Gustavo Niemeyer | 2003-03-19 | 1 | -0/+6 |
|
|
* | - PyEval_GetFrame() is now declared to return a PyFrameObject * | Guido van Rossum | 2003-02-19 | 1 | -2/+2 |
|
|
* | Assorted patches from Armin Rigo: | Michael W. Hudson | 2002-11-08 | 1 | -0/+11 |
|
|
* | missed this one on the previous multi-file checkin - see | Skip Montanaro | 2002-09-03 | 1 | -2/+0 |
|
|
* | Add a low-level API to access interpreters, for David Beazley. | Guido van Rossum | 2001-07-19 | 1 | -0/+25 |
|
|
* | Patch #412229: Add functions sys.getdlopenflags and sys.setdlopenflags. | Martin v. Löwis | 2001-07-18 | 1 | -0/+17 |
|
|
* | 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 | -4/+8 |
|
|
* | Add a new API, PyThreadState_DeleteCurrent() that combines | Guido van Rossum | 2001-01-23 | 1 | -4/+27 |
|
|
* | PyInterpreterState_New is not thread-safe, and the recent fix to _PyPclose | Tim Peters | 2000-09-02 | 1 | -0/+4 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Removing warnings by gcc -Wall -- cast ugly || to void. | Moshe Zadka | 2000-08-04 | 1 | -1/+1 |
|
|
* | Mass ANSIfication of function definitions. Doesn't cover all 'extern' | Thomas Wouters | 2000-07-22 | 1 | -17/+10 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | CRITICAL PATCH! | Guido van Rossum | 1999-06-18 | 1 | -5/+23 |
|
|
* | Make current_tstate a global, _PyThreadState_Current. This is to | Guido van Rossum | 1998-12-21 | 1 | -10/+10 |
|
|
* | /* An extension mechanism to store arbitrary additional per-thread state. | Guido van Rossum | 1998-04-10 | 1 | -0/+21 |
|
|
* | The warning about thread still having a frame now only happens in | Guido van Rossum | 1997-11-03 | 1 | -1/+1 |
|
|
* | Added missing newline to warning msg | Guido van Rossum | 1997-08-21 | 1 | -1/+1 |
|
|
* | The last of the mass checkins for separate (sub)interpreters. | Guido van Rossum | 1997-08-02 | 1 | -26/+102 |
|
|
* | Remove confusing usage comments at end. | Guido van Rossum | 1997-07-19 | 1 | -28/+0 |
|
|
* | Don't use function prototypes in function definition headers. | Guido van Rossum | 1997-05-20 | 1 | -4/+8 |
|
|
* | Massive changes for separate thread state management. | Guido van Rossum | 1997-05-05 | 1 | -0/+163 |
|
|