예제 #1
0
def main():
    app.config(dict(title="Rock - Paper - Scissor", cmdhdl=command_handler,
                    inithdl=init_handler))
    G.putcons = app.get_console_window()
    G.putmsg  = app.get_message_window()

    app.main()
예제 #2
0
def main():
    gui.config(dict(title="Mastermind",
                    cmdhdl=command_handler,
                    inithdl= init_handler))
    gui.start()
    pass
예제 #3
0
def main():
    app.config(dict(title="Importer", cmdhdl=command_handler,
                    inithdl=init_handler))
    app.start()
예제 #4
0
def main():
    app.config(dict(title="Rock - Paper - Scissor", cmdhdl=command_handler, inithdl=init_handler))
    app.start()