Commit 3b9a6dc5 authored by Stefan Behnel's avatar Stefan Behnel

provide 'unicode' type in shadow module

parent 5267732e
......@@ -347,6 +347,11 @@ except NameError: # Py3
py_float = typedef(float, "float")
py_complex = typedef(complex, "double complex")
try:
unicode = typedef(unicode, "unicode")
except NameError: # Py3
unicode = typedef(str, "unicode")
# Predefined types
......
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