Added BufferType, the type returned by the new builtin buffer(). Greg Stein.

This commit is contained in:
Guido van Rossum 1999-03-19 19:08:03 +00:00
parent 0daf022225
commit 36561c5de4
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ except NameError:
pass
StringType = type('')
BufferType = type(buffer(''))
TupleType = type(())
ListType = type([])