From: Guido van Rossum Date: Fri, 19 Mar 1999 19:08:03 +0000 (+0000) Subject: Added BufferType, the type returned by the new builtin buffer(). Greg Stein. X-Git-Tag: v1.5.2c1~123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=36561c5de421686ace502608ae75a816242ff5b3;p=thirdparty%2FPython%2Fcpython.git Added BufferType, the type returned by the new builtin buffer(). Greg Stein. --- diff --git a/Lib/types.py b/Lib/types.py index 70e624a09169..d5f925553615 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -15,6 +15,7 @@ except NameError: pass StringType = type('') +BufferType = type(buffer('')) TupleType = type(()) ListType = type([])