[Tutor] threads

Daniel Yoo dyoo@hkn.eecs.berkeley.edu
Wed, 21 Mar 2001 23:17:14 -0800 (PST)


On Thu, 22 Mar 2001, Margaret Brierton wrote:

> Can someone tell me where the threading modules are........?

Here you go:

    http://python.org/doc/current/lib/module-thread.html

and

    http://python.org/doc/current/lib/module-threading.html

both describe thread modules.  For synchronization, you'll probably find:

    http://python.org/doc/current/lib/module-mutex.html

useful; it describes mutex objects.


Hope this helps!