summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/types.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/types.py b/Lib/types.py
index 2f4a8d4..a71a4db 100644
--- a/Lib/types.py
+++ b/Lib/types.py
@@ -17,6 +17,7 @@ except NameError:
pass
StringType = type('')
+UnicodeType = type(u'')
BufferType = type(buffer(''))
TupleType = type(())