Commit 36561c5d authored by Guido van Rossum's avatar Guido van Rossum

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

parent 0daf0222
......@@ -15,6 +15,7 @@ except NameError:
pass
StringType = type('')
BufferType = type(buffer(''))
TupleType = type(())
ListType = type([])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment