summaryrefslogtreecommitdiffstats
path: root/QMTest
diff options
context:
space:
mode:
Diffstat (limited to 'QMTest')
-rw-r--r--QMTest/TestCmd.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/QMTest/TestCmd.py b/QMTest/TestCmd.py
index 1c71907..07cf71b 100644
--- a/QMTest/TestCmd.py
+++ b/QMTest/TestCmd.py
@@ -240,12 +240,11 @@ try:
memoryview
except NameError:
class memoryview:
- from types import SliceType
def __init__(self, obj):
# wrapping buffer in () keeps the fixer from changing it
self.obj = (buffer)(obj)
def __getitem__(self, indx):
- if isinstance(indx, self.SliceType):
+ if isinstance(indx, slice):
return self.obj[indx.start:indx.stop]
else:
return self.obj[indx]