From: Guido van Rossum <guido@python.org>
Date: Fri, 10 Mar 2000 23:18:11 +0000 (+0000)
Subject: Marc-Andre Lemburg: add UnicodeType.
X-Git-Tag: v1.6a1~218
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=85eacecaa08f49dd3b0f7841400d4d46ef121bb5;p=python

Marc-Andre Lemburg: add UnicodeType.
---

diff --git a/Lib/types.py b/Lib/types.py
index 2f4a8d48e4..a71a4db4e9 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(())