(self, line, continue_prompt=False)
| 108 | Everything else on the line. |
| 109 | """ |
| 110 | def __init__(self, line, continue_prompt=False): |
| 111 | self.line = line |
| 112 | self.continue_prompt = continue_prompt |
| 113 | self.pre, self.esc, self.ifun, self.the_rest = split_user_input(line) |
| 114 | |
| 115 | self.pre_char = self.pre.strip() |
| 116 | if self.pre_char: |
| 117 | self.pre_whitespace = '' # No whitespace allowed before esc chars |
| 118 | else: |
| 119 | self.pre_whitespace = self.pre |
| 120 | |
| 121 | def ofind(self, ip): |
| 122 | """Do a full, attribute-walking lookup of the ifun in the various |
nothing calls this directly
no test coverage detected