예제 #1
0
파일: base.py 프로젝트: helixyte/TheLMA
 def reset(self):
     """
     Resets the tool's :attr:`log`, its :attr:`return_value`.
     """
     MessageRecorder.reset(self)
     self.return_value = None
     if self._is_root:
         initialize_semiconstant_caches()
     self.add_info('Reset.')
예제 #2
0
 def reset(self):
     """
     Resets the tool's :attr:`log`, its :attr:`return_value`.
     """
     MessageRecorder.reset(self)
     self.return_value = None
     if self._is_root:
         initialize_semiconstant_caches()
     self.add_info('Reset.')
예제 #3
0
파일: base.py 프로젝트: helixyte/TheLMA
 def __init__(self, parent=None):
     MessageRecorder.__init__(self, parent=parent)
     if self._is_root:
         initialize_semiconstant_caches()
     #: The object to be passed as result.
     self.return_value = None
예제 #4
0
파일: base.py 프로젝트: papagr/TheLMA
 def reset(self):
     """
     Resets the parser. Call this before running the parser.
     """
     MessageRecorder.reset(self)
     self.has_run = False
예제 #5
0
파일: base.py 프로젝트: helixyte/TheLMA
 def reset(self):
     """
     Resets the parser. Call this before running the parser.
     """
     MessageRecorder.reset(self)
     self.has_run = False
예제 #6
0
 def __init__(self, parent=None):
     MessageRecorder.__init__(self, parent=parent)
     if self._is_root:
         initialize_semiconstant_caches()
     #: The object to be passed as result.
     self.return_value = None