diff options
author | Guido van Rossum <guido@python.org> | 2000-03-10 23:18:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-03-10 23:18:11 (GMT) |
commit | 85eacecaa08f49dd3b0f7841400d4d46ef121bb5 (patch) | |
tree | 25351e8d65b0c115d0e44a5818d17844c8ee886e /Lib | |
parent | 0229bf6001a4514f70cc30c1c558b8ece2b8ce79 (diff) | |
download | cpython-85eacecaa08f49dd3b0f7841400d4d46ef121bb5.zip cpython-85eacecaa08f49dd3b0f7841400d4d46ef121bb5.tar.gz cpython-85eacecaa08f49dd3b0f7841400d4d46ef121bb5.tar.bz2 |
Marc-Andre Lemburg: add UnicodeType.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/types.py | 1 |
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(()) |