comparison scripts/testconsole.py @ 854:3577c51029f1 default tip

Remove Suspended Sentence. pyntnclick is the library we extracted from it
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 21 Jun 2014 22:15:54 +0200
parents f95830b58336
children
comparison
equal deleted inserted replaced
853:f95830b58336 854:3577c51029f1
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()