summaryrefslogtreecommitdiff
path: root/Modules/threadmodule.c
Commit message (Expand)AuthorAgeFilesLines
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Merged revisions 84344 via svnmerge fromAntoine Pitrou2010-08-281-43/+38
* Merged revisions 84106 via svnmerge fromAlexander Belopolsky2010-08-161-1/+1
* Merged revisions 83918 via svnmerge fromAntoine Pitrou2010-08-091-45/+224
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-465/+465
* Issue #7544: Preallocate thread memory before creating the thread to avoid aVictor Stinner2010-03-031-2/+10
* Issue #3299: fix thread.allocate_lock() error handler, replace PyObject_Del()Victor Stinner2010-03-031-8/+9
* #4852: Remove dead code in every thread implementation, unused for many years.Amaury Forgeot d'Arc2010-02-231-16/+0
* Remove official documentation entry for thread._count() and make theAntoine Pitrou2009-10-301-2/+8
* Issue #7222: Make thread "reaping" more reliable so that referenceAntoine Pitrou2009-10-301-1/+19
* #6990: clear threading.local's key only after its thread state is removed:Philip Jenvey2009-09-291-1/+1
* Add weakref support to the thread.lock type.Gregory P. Smith2009-08-201-2/+7
* stop using Py_FindMethodBenjamin Peterson2009-05-241-8/+22
* #Issue3088 in-progress: Race condition with instances of classes derived from...Amaury Forgeot d'Arc2008-06-301-1/+4
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-1/+1
* Renamed PyString to PyBytesChristian Heimes2008-05-261-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-4/+4
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-8/+6
* Add some asserts. In sysmodule, I think these were to try to silenceNeal Norwitz2006-10-281-0/+1
* Remove unused variable.Brett Cannon2006-06-131-1/+0
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-131-0/+58
* Revert revisions:Tim Peters2006-06-041-48/+0
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-041-0/+48
* Make use of METH_O and METH_NOARGS where possible.Georg Brandl2006-05-291-1/+2
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-9/+0
* remove forward declarations, move constructor functions. makes code C++ safe.Anthony Baxter2006-04-121-43/+42
* Remove unnecessary casts from type object initializers.Georg Brandl2006-03-301-18/+18
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-27/+4
* typoGeorg Brandl2006-03-081-1/+1
* Updates to the with-statement:Guido van Rossum2006-02-281-0/+36
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Fix bug:Michael W. Hudson2005-06-201-3/+6
* Consistently use hard tabs for indentation.Michael W. Hudson2005-06-151-172/+165
* Add a missing incref.Michael W. Hudson2005-06-151-0/+1
* Delete some vestigial code; execution will never reach the 'if' statement if ...Andrew M. Kuchling2005-06-021-6/+1
* The error message "can't start new thread" should not end in aGuido van Rossum2005-02-201-1/+1
* Fix for [ 1010677 ] thread Module Breaks PyGILState_Ensure(),Mark Hammond2004-08-241-5/+3
* Implemented thread-local data as proposed on python-dev:Jim Fulton2004-07-141-0/+260
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-241-1/+1
* Correct function name.Kurt B. Kaiser2003-06-161-3/+3
* Add interrupt_main() to thread module.Kurt B. Kaiser2003-06-131-0/+17
* When an unhandled exception happens, report the repr() of the functionGuido van Rossum2003-04-291-5/+13
* --with(out)-thread is deprecated according to configure --helpNeal Norwitz2002-09-051-1/+1
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* staticforward bites the dust.Jeremy Hylton2002-07-171-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-18/+18
* Lock methods acquire() and locked() now return bools.Guido van Rossum2002-04-071-7/+7
* Remove METH_OLDARGS:Neal Norwitz2002-03-311-11/+8
* Missed change METH_OLDARGS to METH_NOARGS for two aliased functionsNeal Norwitz2002-03-261-2/+2
* Missed change METH_OLDARGS to METH_NOARGS for two aliased functionsNeal Norwitz2002-03-251-2/+2