view scripts/testconsole.py @ 619:4ffa9d159588

Some coordinate operators, to reduce foo_x, foo_y everywhere.
author Jeremy Thurgood <firxen@gmail.com>
date Fri, 06 May 2011 16:37:43 +0200
parents 0ddfbb5b1ae7
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()