From a8738a56424e93e55cd92656ac86903630783d0a Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 14 Mar 1996 21:30:28 +0000 Subject: Added print_arguments() function. --- Lib/cgi.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Lib/cgi.py') diff --git a/Lib/cgi.py b/Lib/cgi.py index 14f1d8fb571..2ef987ee6f6 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -1043,6 +1043,7 @@ def test(): print_form(form) print_environ() print_directory() + print_arguments() print_environ_usage() except: print "\n\n
"	# Turn off HTML word wrap
@@ -1087,6 +1088,13 @@ def print_directory():
 	print escape(pwd)
     print
 
+def print_arguments():
+    print
+    print "

Command line Arguments:

" + print + print sys.argv + print + def print_environ_usage(): """Dump a list of environment variables used by CGI as HTML.""" print """ -- cgit v1.2.3