From 04bfd8e1594cf8dfc174a89ad290f5cf10de97cc Mon Sep 17 00:00:00 2001 From: cclauss Date: Thu, 25 Jan 2018 09:40:10 +0100 Subject: [PATCH] memoryview = memoryview --- isso/compat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/isso/compat.py b/isso/compat.py index 211da98..84bfb51 100644 --- a/isso/compat.py +++ b/isso/compat.py @@ -10,9 +10,9 @@ except NameError: # Python 3 string_types = (str, ) try: - memoryview # Python 2.7 and Python 3 + memoryview = memoryview # Python 2.7 and Python 3 except NameError: - memoryview = buffer # Python 2.6 + memoryview = buffer # Python 2.6 if not PY2K: filter, map, zip = filter, map, zip