From: Guido van Rossum 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: http://git.ipfire.org/?a=commitdiff_plain;h=85eacecaa08f49dd3b0f7841400d4d46ef121bb5;p=thirdparty%2FPython%2Fcpython.git Marc-Andre Lemburg: add UnicodeType. --- diff --git a/Lib/types.py b/Lib/types.py index 2f4a8d48e48a..a71a4db4e9ca 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(())