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>