# -*- Mode: Python; tab-width: 4 -*- import pprint def main (env, stdin, stdout): stdout.write ( '

Test CGI Module

\r\n' '
The Environment:
\r\n'
            )
    pprint.pprint (env, stdout)
    stdout.write ('
\r\n')