diff options
-rwxr-xr-x | Lib/cgi.py | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1043,6 +1043,7 @@ def test(): print_form(form) print_environ() print_directory() + print_arguments() print_environ_usage() except: print "\n\n<PRE>" # Turn off HTML word wrap @@ -1087,6 +1088,13 @@ def print_directory(): print escape(pwd) print +def print_arguments(): + print + print "<H3>Command line Arguments:</H3>" + print + print sys.argv + print + def print_environ_usage(): """Dump a list of environment variables used by CGI as HTML.""" print """ |