| Commit message (Expand) | Author | Age | Files | Lines |
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -465/+465 |
|
|
* | Issue #7544: Preallocate thread memory before creating the thread to avoid a | Victor Stinner | 2010-03-03 | 1 | -2/+10 |
|
|
* | Issue #3299: fix thread.allocate_lock() error handler, replace PyObject_Del() | Victor Stinner | 2010-03-03 | 1 | -8/+9 |
|
|
* | #4852: Remove dead code in every thread implementation, unused for many years. | Amaury Forgeot d'Arc | 2010-02-23 | 1 | -16/+0 |
|
|
* | Remove official documentation entry for thread._count() and make the | Antoine Pitrou | 2009-10-30 | 1 | -2/+8 |
|
|
* | Issue #7222: Make thread "reaping" more reliable so that reference | Antoine Pitrou | 2009-10-30 | 1 | -1/+19 |
|
|
* | #6990: clear threading.local's key only after its thread state is removed: | Philip Jenvey | 2009-09-29 | 1 | -1/+1 |
|
|
* | Add weakref support to the thread.lock type. | Gregory P. Smith | 2009-08-20 | 1 | -2/+7 |
|
|
* | stop using Py_FindMethod | Benjamin Peterson | 2009-05-24 | 1 | -8/+22 |
|
|
* | #Issue3088 in-progress: Race condition with instances of classes derived from... | Amaury Forgeot d'Arc | 2008-06-30 | 1 | -1/+4 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -1/+1 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -1/+1 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -4/+4 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -8/+6 |
|
|
* | Add some asserts. In sysmodule, I think these were to try to silence | Neal Norwitz | 2006-10-28 | 1 | -0/+1 |
|
|
* | Remove unused variable. | Brett Cannon | 2006-06-13 | 1 | -1/+0 |
|
|
* | Patch #1454481: Make thread stack size runtime tunable. | Andrew MacIntyre | 2006-06-13 | 1 | -0/+58 |
|
|
* | Revert revisions: | Tim Peters | 2006-06-04 | 1 | -48/+0 |
|
|
* | Patch #1454481: Make thread stack size runtime tunable. | Andrew MacIntyre | 2006-06-04 | 1 | -0/+48 |
|
|
* | Make use of METH_O and METH_NOARGS where possible. | Georg Brandl | 2006-05-29 | 1 | -1/+2 |
|
|
* | Get rid of __context__, per the latest changes to PEP 343 and python-dev | Guido van Rossum | 2006-05-02 | 1 | -9/+0 |
|
|
* | remove forward declarations, move constructor functions. makes code C++ safe. | Anthony Baxter | 2006-04-12 | 1 | -43/+42 |
|
|
* | Remove unnecessary casts from type object initializers. | Georg Brandl | 2006-03-30 | 1 | -18/+18 |
|
|
* | Um, I thought I'd already checked this in. | Guido van Rossum | 2006-03-10 | 1 | -27/+4 |
|
|
* | typo | Georg Brandl | 2006-03-08 | 1 | -1/+1 |
|
|
* | Updates to the with-statement: | Guido van Rossum | 2006-02-28 | 1 | -0/+36 |
|
|
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
|
|
* | Fix bug: | Michael W. Hudson | 2005-06-20 | 1 | -3/+6 |
|
|
* | Consistently use hard tabs for indentation. | Michael W. Hudson | 2005-06-15 | 1 | -172/+165 |
|
|
* | Add a missing incref. | Michael W. Hudson | 2005-06-15 | 1 | -0/+1 |
|
|
* | Delete some vestigial code; execution will never reach the 'if' statement if ... | Andrew M. Kuchling | 2005-06-02 | 1 | -6/+1 |
|
|
* | The error message "can't start new thread" should not end in a | Guido van Rossum | 2005-02-20 | 1 | -1/+1 |
|
|
* | Fix for [ 1010677 ] thread Module Breaks PyGILState_Ensure(), | Mark Hammond | 2004-08-24 | 1 | -5/+3 |
|
|
* | Implemented thread-local data as proposed on python-dev: | Jim Fulton | 2004-07-14 | 1 | -0/+260 |
|
|
* | Changed random calls to PyThreadState_Get() to use the macro | Nicholas Bastin | 2004-03-24 | 1 | -1/+1 |
|
|
* | Correct function name. | Kurt B. Kaiser | 2003-06-16 | 1 | -3/+3 |
|
|
* | Add interrupt_main() to thread module. | Kurt B. Kaiser | 2003-06-13 | 1 | -0/+17 |
|
|
* | When an unhandled exception happens, report the repr() of the function | Guido van Rossum | 2003-04-29 | 1 | -5/+13 |
|
|
* | --with(out)-thread is deprecated according to configure --help | Neal Norwitz | 2002-09-05 | 1 | -1/+1 |
|
|
* | Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype | Mark Hammond | 2002-08-02 | 1 | -1/+1 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -1/+1 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -18/+18 |
|
|
* | Lock methods acquire() and locked() now return bools. | Guido van Rossum | 2002-04-07 | 1 | -7/+7 |
|
|
* | Remove METH_OLDARGS: | Neal Norwitz | 2002-03-31 | 1 | -11/+8 |
|
|
* | Missed change METH_OLDARGS to METH_NOARGS for two aliased functions | Neal Norwitz | 2002-03-26 | 1 | -2/+2 |
|
|
* | Missed change METH_OLDARGS to METH_NOARGS for two aliased functions | Neal Norwitz | 2002-03-25 | 1 | -2/+2 |
|
|
* | Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. | Neal Norwitz | 2002-03-25 | 1 | -22/+10 |
|
|
* | Patch supplied by Burton Radons for his own SF bug #487390: Modifying | Guido van Rossum | 2001-12-08 | 1 | -1/+1 |
|
|
* | Partial patch from SF #452266, by Jason Petrone. | Guido van Rossum | 2001-10-16 | 1 | -9/+10 |
|
|
* | Fix typo in docstring | Andrew M. Kuchling | 2001-10-05 | 1 | -1/+1 |
|
|