Antoine Pitrou wrote:

event_class = Event().__class__ ?

Not pretty I know :-)

somewhat prettier, assuming 2.3 or newer:

>>> import threading
>>> e = threading.Event()
>>> type(e)
<class 'threading._Event'>
>>> isinstance(e, type(threading.Event()))
True

(but pretty OT)

</F>

_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to