From bae07c9baf3e53164de6f85a18ce747a76b9ffde Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 8 Oct 2007 02:46:15 +0000 Subject: Breaking ground for PEP 3137 implementation: Get rid of buffer(). Use memoryview() in its place where possible. In a few places, do things a bit different, because memoryview() can't slice (yet). --- Lib/types.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'Lib/types.py') diff --git a/Lib/types.py b/Lib/types.py index 4c49ba3939..5c1f2497d1 100644 --- a/Lib/types.py +++ b/Lib/types.py @@ -22,8 +22,6 @@ try: except NameError: pass -BufferType = buffer - TupleType = tuple ListType = list DictType = DictionaryType = dict -- cgit v1.2.1