Called for any command that doesn't have a do_*() method. Sends the command with any arguments and trailing comment to the server.
(self, line)
| 1904 | self.readline.add_history(history_item) |
| 1905 | |
| 1906 | def default(self, line): |
| 1907 | """Called for any command that doesn't have a do_*() method. Sends the command |
| 1908 | with any arguments and trailing comment to the server.""" |
| 1909 | return self._execute_stmt(line, print_web_link=True) |
| 1910 | |
| 1911 | def emptyline(self): |
| 1912 | """If an empty line is entered, do nothing""" |