diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-14 13:08:27 +0000 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-14 13:08:27 +0000 |
commit | f1c7ca93c1f8b72644fd52878e2fd5cbf0a45ea7 (patch) | |
tree | c3f0be3ba7da660ba44b9fee88f2e786b095357b /Lib/cgi.py | |
parent | 5c23b8e6ea7cdb0002842d16dbce4b4d716dd35a (diff) | |
download | cpython-git-f1c7ca93c1f8b72644fd52878e2fd5cbf0a45ea7.tar.gz |
cgi: use isinstance(x, list) instead of type(x) == type([])
Diffstat (limited to 'Lib/cgi.py')
-rwxr-xr-x | Lib/cgi.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/cgi.py b/Lib/cgi.py index d17ed96cb5..e198ed8653 100755 --- a/Lib/cgi.py +++ b/Lib/cgi.py @@ -582,7 +582,7 @@ class FieldStorage: """Dictionary style get() method, including 'value' lookup.""" if key in self: value = self[key] - if type(value) is type([]): + if isinstance(value, list): return [x.value for x in value] else: return value.value @@ -593,7 +593,7 @@ class FieldStorage: """ Return the first value received.""" if key in self: value = self[key] - if type(value) is type([]): + if isinstance(value, list): return value[0].value else: return value.value @@ -604,7 +604,7 @@ class FieldStorage: """ Return list of received values.""" if key in self: value = self[key] - if type(value) is type([]): + if isinstance(value, list): return [x.value for x in value] else: return [value.value] |