This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #See https://stackoverflow.com/q/54425723/591064 for usage | |
| async def adapter_cmdloop(self, intro=None): | |
| """Repeatedly issue a prompt, accept input, parse an initial prefix | |
| off the received input, and dispatch to action methods, passing them | |
| the remainder of the line as argument. | |
| """ | |
| self.preloop() | |
| #This is the same code as the Python 3.7.2 Cmd class, with the |
OlderNewer