view scripts/testconsole.py @ 549:f0a29c9d57ee

Reminder to fix mamba.exe checksum and executable size after building.
author Simon Cross <hodgestar@gmail.com>
date Sun, 18 Sep 2011 20:58:34 +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()