equal
deleted
inserted
replaced
390 |
390 |
391 class PythonScanTask(Task.TaskBase): |
391 class PythonScanTask(Task.TaskBase): |
392 """Uses gccxml to scan the file 'everything.h' and extract API definitions. |
392 """Uses gccxml to scan the file 'everything.h' and extract API definitions. |
393 """ |
393 """ |
394 def __init__(self, curdirnode, env): |
394 def __init__(self, curdirnode, env): |
395 self.m_display = 'python-scan' |
|
396 self.prio = 5 # everything.h has prio 4 |
395 self.prio = 5 # everything.h has prio 4 |
397 super(PythonScanTask, self).__init__() |
396 super(PythonScanTask, self).__init__() |
398 self.curdirnode = curdirnode |
397 self.curdirnode = curdirnode |
399 self.env = env |
398 self.env = env |
|
399 self.m_display = 'python-scan\n' |
400 |
400 |
401 def run(self): |
401 def run(self): |
402 #print "Rescanning the python bindings..." |
402 #print "Rescanning the python bindings..." |
403 argv = [ |
403 argv = [ |
404 self.env['PYTHON'], |
404 self.env['PYTHON'], |