diff options
author | Skip Montanaro <skip@pobox.com> | 2007-08-06 21:07:53 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2007-08-06 21:07:53 (GMT) |
commit | 1e8ce58f5d0db22714d65ff440045a7526ed394d (patch) | |
tree | f705fb923334cffa32492a5bddfcca46ecc27f0a /Demo/cgi | |
parent | 28a181cbe82bc79df3b881b79b19e12b2e39911b (diff) | |
download | cpython-1e8ce58f5d0db22714d65ff440045a7526ed394d.zip cpython-1e8ce58f5d0db22714d65ff440045a7526ed394d.tar.gz cpython-1e8ce58f5d0db22714d65ff440045a7526ed394d.tar.bz2 |
remove most uses of list(somedict.keys()) in Demo scripts
Diffstat (limited to 'Demo/cgi')
-rwxr-xr-x | Demo/cgi/cgi2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/cgi/cgi2.py b/Demo/cgi/cgi2.py index 239fb6b..1d5822c 100755 --- a/Demo/cgi/cgi2.py +++ b/Demo/cgi/cgi2.py @@ -14,7 +14,7 @@ def main(): print("<h1>No Form Keys</h1>") else: print("<h1>Form Keys</h1>") - for key in list(form.keys()): + for key in form.keys(): value = form[key].value print("<p>", cgi.escape(key), ":", cgi.escape(value)) |