Mercurial > sqlpython
view testcmd.py @ 49:8ce9e85a2a32
trying a new setup.py
author | catherine@DellZilla.myhome.westell.com |
---|---|
date | Tue, 01 Apr 2008 23:20:49 -0400 |
parents | 2739250177ed |
children |
line wrap: on
line source
import cmd2 class test(cmd2.Cmd): binarypar = True def do_sing(self, arg): '''Sings. Hums if it has to fake it.''' print arg or 'hmm hmm hmm' def do_shout(self, arg): print arg.upper() def do_quit(self, arg): return 1 multilineCommands = ['shout'] t = test() t.cmdloop()