~vcs-imports/evad/trunk

« back to all changes in this revision

Viewing changes to Evad/threader.py

  • Committer: etnoy
  • Date: 2008-02-25 17:23:10 UTC
  • Revision ID: vcs-imports@canonical.com-20080225172310-fdhgohix7400vs8e
New and shiny error handling system

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
from threading import Thread
25
25
import manager
26
26
import handler
 
27
import signal
27
28
 
28
29
class threader(threading.Thread):
29
30
    """
45
46
    def doIt(self):
46
47
        raise NotImplementedException
47
48
 
 
49
 
 
50
    
 
51
 
48
52
    def run(self):
 
53
        
49
54
        handler.wrapper(self.doIt)
50
55
 
51
56
def enumerate():