Commit 65cf58fc authored by Stefan Behnel's avatar Stefan Behnel

correct name for basestring in Py3 to 'str' (not 'unicode')

parent 14601412
...@@ -36,9 +36,9 @@ non_portable_builtins_map = { ...@@ -36,9 +36,9 @@ non_portable_builtins_map = {
# builtins that have different names in different Python versions # builtins that have different names in different Python versions
'bytes' : ('PY_MAJOR_VERSION < 3', 'str'), 'bytes' : ('PY_MAJOR_VERSION < 3', 'str'),
'unicode' : ('PY_MAJOR_VERSION >= 3', 'str'), 'unicode' : ('PY_MAJOR_VERSION >= 3', 'str'),
'basestring' : ('PY_MAJOR_VERSION >= 3', 'str'),
'xrange' : ('PY_MAJOR_VERSION >= 3', 'range'), 'xrange' : ('PY_MAJOR_VERSION >= 3', 'range'),
'BaseException' : ('PY_VERSION_HEX < 0x02050000', 'Exception'), 'BaseException' : ('PY_VERSION_HEX < 0x02050000', 'Exception'),
'basestring' : ('PY_MAJOR_VERSION >= 3', 'unicode'),
} }
basicsize_builtins_map = { basicsize_builtins_map = {
......
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