Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
# test errors from bad operations (unary, binary, etc)
try:
memoryview
except:
print("SKIP")
raise SystemExit
# unsupported binary operators
m = memoryview(bytearray())
m += bytearray()
except TypeError:
print('TypeError')