[issue12960] threading.Condition is not a class

STINNER Victor report at bugs.python.org
Wed Sep 14 01:41:32 CEST 2011


STINNER Victor <victor.stinner at haypocalc.com> added the comment:

> According to http://docs.python.org/library/threading.html#condition-objects, threading.Condition is a class.

Nope, it's a factory, and it's written in the doc:

"threading.Condition()
A factory function that returns a new condition variable object. A condition variable allows one or more threads to wait until they are notified by another thread.

See Condition Objects."

It has been changed in Python 3.3 (#10968): threading.Condition is now a class, instead of a factory.

----------
nosy: +haypo

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue12960>
_______________________________________


More information about the Python-bugs-list mailing list