Kaydet (Commit) f1c7ca93 authored tarafından Victor Stinner's avatar Victor Stinner

cgi: use isinstance(x, list) instead of type(x) == type([])

üst 5c23b8e6
......@@ -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]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment