view scripts/testconsole.py @ 515:f3e69e59345f

Remove numeric keypad TODO until it can be reproduced on another machine.
author Simon Cross <hodgestar@gmail.com>
date Sun, 18 Sep 2011 00:29:26 +0200
parents 965048a33ce4
children
line wrap: on
line source

#! /usr/bin/env python
# testconsole.py


"""This module launches an interactive console.

   Its purpose is to provide an easy means to
   test the environment created by a py2exe build.
   """

if __name__ == "__main__":
    import code
    console = code.InteractiveConsole()
    console.interact()