コード例 #1
0
ファイル: cli.py プロジェクト: whatever4711/escape
 def do_ee( self, line ):
     """
     Execute EE sub-commands.
     See `ee help' for the list of sub-commands.
     Without arguments, enters into the sub-command interpreter.
     """
     ee = EE(self.mn, self.stdin)
     if line.strip():
         ee.onecmd( line )
     else:
         ee.cmdloop()