comparison scripts/testconsole.py @ 186:f15c4f7c24e6

Windows builder (works under Wine).
author Simon Cross <simon@simonx>
date Wed, 25 Aug 2010 16:24:55 +0200
parents
children
comparison
equal deleted inserted replaced
185:ce12e56ed434 186:f15c4f7c24e6
1 #! /usr/bin/env python
2 # testconsole.py
3 # Copyright Simon Cross, Neil Muller, 2009 (see COPYING File)
4
5
6 """This module launches an interactive console.
7
8 Its purpose is to provide an easy means to
9 test the environment created by a py2exe build.
10 """
11
12 if __name__ == "__main__":
13 import code
14 # pylint: disable-msg=C0103
15 # pylint thinks this should be a constant
16 console = code.InteractiveConsole()
17 console.interact()