summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libthreading.tex
Commit message (Collapse)AuthorAgeFilesLines
* Delete the LaTeX doc tree.Georg Brandl2007-08-151-728/+0
|
* Patch #1731049: make threading.py use a proper "raise" when checking ↵Collin Winter2007-06-061-26/+38
| | | | internal state, rather than assert statements (which get stripped out by -O).
* Lots of explicit class names for method and member descs.Georg Brandl2007-04-011-12/+12
|
* Patch #1680978: consistently use "alive" instead of "active" in theGeorg Brandl2007-03-151-24/+20
| | | | thread lib doc.
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-131-0/+20
| | | | | | | | | | Heavily revised, comprising revisions: 46640 - original trunk revision (backed out in r46655) 46647 - markup fix (backed out in r46655) 46692:46918 merged from branch aimacintyre-sf1454481 branch tested on buildbots (Windows buildbots had problems not related to these changes).
* Revert revisions:Tim Peters2006-06-041-19/+0
| | | | | | | | | | | | | | | | 46640 Patch #1454481: Make thread stack size runtime tunable. 46647 Markup fix The first is causing many buildbots to fail test runs, and there are multiple causes with seemingly no immediate prospects for repairing them. See python-dev discussion. Note that a branch can (and should) be created for resolving these problems, like svn copy svn+ssh://svn.python.org/python/trunk -r46640 svn+ssh://svn.python.org/python/branches/NEW_BRANCH followed by merging rev 46647 to the new branch.
* Markup fixGeorge Yoshida2006-06-041-3/+3
|
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-041-0/+19
|
* Document objects that can be used with the ``with`` statement.Phillip J. Eby2006-03-281-0/+23
|
* [ 912943 ] 7.5.6 Thread Objects is too vagueGeorg Brandl2005-07-171-1/+6
|
* [Bug #1209880] Describe only the True/False return values from lock.acquire()Andrew M. Kuchling2005-06-021-2/+1
|
* Minor editsAndrew M. Kuchling2004-07-171-4/+4
|
* Implemented thread-local data as proposed on python-dev:Jim Fulton2004-07-141-0/+19
| | | | http://mail.python.org/pipermail/python-dev/2004-June/045785.html
* Add versionadded info for the 2 new threading module functionsNeal Norwitz2003-06-301-0/+2
|
* Fix broken markup, & tweak a couple of things for consistency.Fred Drake2003-06-291-4/+4
|
* Add settrace() and setprofile() functions to the threading library.Jeremy Hylton2003-06-291-0/+14
|
* Strike any hint that from-import-* could ever be reasonable; it's aFred Drake2003-01-061-2/+1
| | | | vile abomination and should be eradicated!
* - fix use of \refmodule markupFred Drake2002-12-301-2/+3
| | | | | - correct some module names, add hyperlinks - wrap some long lines
* Add dummy_thread[ing] sections and reference these from libthread[ing].Guido van Rossum2002-12-301-0/+3
|
* Adjust some poor wording in the text that explains what events are usedFred Drake2002-03-191-27/+29
| | | | | for (reported by Keith Briggs). Wrap some very long lines.
* Patch #428326: New class threading.Timer.Martin v. Löwis2001-09-051-0/+36
|
* Added documentation for BoundedSemaphore(), contributed by Skip Montanaro.Fred Drake2001-08-201-2/+40
| | | | This closes SF patch #452836.
* Fix up a few style nits -- avoid "e.g." and "i.e." -- these makeFred Drake2001-07-061-5/+6
| | | | | translation more difficult, as well as reading the English more difficult for non-native speakers.
* Some general cleanup of the threading module documentation, includingFred Drake2001-05-311-25/+15
| | | | | | fixing the reference to Thread.getDeamon() (should be isDaemon()). This closes SF bug #429070.
* Fix a grammatical error reported by Detlef LannertFred Drake1999-04-231-1/+1
| | | | <lannert@lannert.rz.uni-duesseldorf.de>.
* Make internal module references hyperlinks wherever it makes sense.Fred Drake1999-04-221-2/+2
|
* Fixed tons of small markup problems.Fred Drake1999-03-121-69/+74
|
* New section header style.Fred Drake1998-08-101-1/+2
| | | | Fix up a few synopses.
* Fix the synopsis.Fred Drake1998-07-271-5/+4
| | | | Change one \code{} to \samp{}.
* Adjusted to use the new module synopsis support macros.Fred Drake1998-07-231-2/+4
|
* Added libthreading.tex ; this is mostly the contents of threading_api.py,Andrew M. Kuchling1998-07-201-0/+561
with LaTeX markup added, and some small rewrites to improve the prose.