Commit ef105e6f authored by Guido van Rossum's avatar Guido van Rossum

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

parent 75d8717c
...@@ -15,6 +15,7 @@ except NameError: ...@@ -15,6 +15,7 @@ except NameError:
pass pass
StringType = type('') StringType = type('')
BufferType = type(buffer(''))
TupleType = type(()) TupleType = type(())
ListType = 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