view scripts/testconsole.py @ 532:f2f7a91aae95

Red died text
author Stefano Rivera <stefano@rivera.za.net>
date Sun, 18 Sep 2011 01:14:50 +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()