Hook method executed just before the command line is interpreted, but after the input prompt is generated and issued.
(self, line)
| 159 | |
| 160 | |
| 161 | def precmd(self, line): |
| 162 | """Hook method executed just before the command line is |
| 163 | interpreted, but after the input prompt is generated and issued. |
| 164 | |
| 165 | """ |
| 166 | return line |
| 167 | |
| 168 | def postcmd(self, stop, line): |
| 169 | """Hook method executed just after a command dispatch is finished.""" |