summaryrefslogtreecommitdiff
path: root/Modules/threadmodule.c
Commit message (Expand)AuthorAgeFilesLines
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-4/+4
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-3/+3
* Added some additional checks for sys.std?? is None, see #1440Christian Heimes2007-11-151-1/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-8/+6
* Make "thread.local" key a unicode object.Walter Dörwald2007-06-201-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+1
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-0/+2
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-0/+57
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-1/+2
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-9/+0
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-61/+60
* 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
* Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS.Neal Norwitz2002-03-251-22/+10
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-1/+1
* Partial patch from SF #452266, by Jason Petrone.Guido van Rossum2001-10-161-9/+10
* Fix typo in docstringAndrew M. Kuchling2001-10-051-1/+1
* Use PyThreadState_DeleteCurrent() instead of PyThreadState_Delete()Guido van Rossum2001-01-231-2/+1
* t_bootstram(): Use PySys_WriteStderr() instead of fprintf(stderr,...).Fred Drake2000-10-201-1/+1
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* The second argument to start_new_thread() is not a tuple, as pointedGuido van Rossum2000-09-011-2/+2
* Use METH_OLDARGS instead of numeric constant 0 in method def. tablesAndrew M. Kuchling2000-08-031-16/+22
* Use METH_VARARGS instead of numeric constant 1 in method def. tablesAndrew M. Kuchling2000-08-031-2/+4
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-2/+2
* ANSI-ficationPeter Schneider-Kamp2000-07-101-31/+11
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-3/+3
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-1/+1