New submission from NNN <fibulator...@hotmail.com>:
Created an 2D array: bigFloorLayout = [] bigFloorLayout=[[False for row in range(0,45] for col in range(0,70] for y in range (offsetY, storageY + offsetY): for x in range (offsetX, storageX + offsetX): bigFloorLayout[x][y] = True Offset is a negative number, and thus accessing bigFloorLayout[0][-1], which did not yield "Index out of Bounds" as it should. This is in Blender 2.81, so I have no idea what version of python it is. ---------- messages: 358655 nosy: NNN priority: normal severity: normal status: open title: Negative Array Index not Yielding "Index Out Of Bounds" type: behavior _______________________________________ Python tracker <rep...@bugs.python.org> <https://bugs.python.org/issue39095> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com