Home | History | Annotate | Download | only in pexpect

Lines Matching full:none

62 Finally, if none of the previous cases are defined for an input_symbol and
102 def __init__(self, initial_state, memory=None):
113 self.default_transition = None
115 self.input_symbol = None
118 self.next_state = None
119 self.action = None
125 input_symbol to None. The initial state was set by the constructor
129 self.input_symbol = None
131 def add_transition (self, input_symbol, state, action=None, next_state=None):
137 The action may be set to None in which case the process() method will
139 set to None in which case the current state will be unchanged.
144 if next_state is None:
148 def add_transition_list (self, list_input_symbols, state, action=None, next_state=None):
155 The action may be set to None in which case the process() method will
157 set to None in which case the current state will be unchanged. """
159 if next_state is None:
164 def add_transition_any (self, state, action=None, next_state=None):
174 The action may be set to None in which case the process() method will
176 set to None in which case the current state will be unchanged. """
178 if next_state is None:
191 default_transition to None. """
222 elif self.default_transition is not None:
233 input_symbol and current_state. If the action is None then the action
240 if self.action is not None:
243 self.next_state = None
313 f.add_transition_any ('INIT', None, 'INIT')