summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/types.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/types.py b/Lib/types.py
index 70e624a..d5f9255 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([])