This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author NNN
Recipients NNN
Date 2019-12-19.04:13:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1576728800.29.0.743612590948.issue39095@roundup.psfhosted.org>
In-reply-to
Content
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.
History
Date User Action Args
2019-12-19 04:13:20NNNsetrecipients: + NNN
2019-12-19 04:13:20NNNsetmessageid: <1576728800.29.0.743612590948.issue39095@roundup.psfhosted.org>
2019-12-19 04:13:20NNNlinkissue39095 messages
2019-12-19 04:13:20NNNcreate