On windows python3, array.array('i', [0])[0] = 2**32 does not raise
Discovered in hyptothesis testing https://github.com/HypothesisWorks/hypothesis/issues/3028#issuecomment-979728317
arr = array.array('i', [0])
arr[0] = 2 ** 32
does not raise an OverflowError on windows for pypy3. This is tested in pypy/module/array/test/test_array.py
in test_itemsize
which passes on default, fails on py3.7.