gopy
gopy copied to clipboard
python2 doesn't catch error that python3 does in _example/maps
in _examples/maps/test.py:
# TODO: not sure why python2 doesn't just catch this error, but it doesn't seem to..
# try:
# v = a[4]
# except Exception as err:
# print("caught error: %s" % (err,))
# pass