Dump the shell environment as HTML.
(environ=os.environ)
| 904 | del tb |
| 905 | |
| 906 | def print_environ(environ=os.environ): |
| 907 | """Dump the shell environment as HTML.""" |
| 908 | keys = sorted(environ.keys()) |
| 909 | print() |
| 910 | print("<H3>Shell Environment:</H3>") |
| 911 | print("<DL>") |
| 912 | for key in keys: |
| 913 | print("<DT>", html.escape(key), "<DD>", html.escape(environ[key])) |
| 914 | print("</DL>") |
| 915 | print() |
| 916 | |
| 917 | def print_form(form): |
| 918 | """Dump the contents of a form as HTML.""" |