Marc-Andre Lemburg: add UnicodeType.

This commit is contained in:
Guido van Rossum 2000-03-10 23:18:11 +00:00
parent 0229bf6001
commit 85eacecaa0
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ except NameError:
pass
StringType = type('')
UnicodeType = type(u'')
BufferType = type(buffer(''))
TupleType = type(())