In article <[email protected]>, News123 <[email protected]> wrote: > >Is there a simple way in Python to identify all active Threads / >QThreads when trying, such that I can locate the thread, itls related >python code and fix it?
threading.enumerate() or sys._current_frames() -- Aahz ([email protected]) <*> http://www.pythoncraft.com/ "Look, it's your affair if you want to play with five people, but don't go calling it doubles." --John Cleese anticipates Usenet -- http://mail.python.org/mailman/listinfo/python-list
