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 nutregina
Recipients nutregina
Date 2009-09-19.14:58:59
SpamBayes Score 0.0023200086
Marked as misclassified No
Message-id <1253372340.63.0.203470162856.issue6948@psf.upfronthosting.co.za>
In-reply-to
Content
>>> a = [[0,0,0],[0,0,0],[0,0,0]]
>>> a
[[0, 0, 0], [0, 0, 0], [0, 0, 0]]
>>> a[1][1] = 1
>>> a
[[0, 0, 0], [0, 1, 0], [0, 0, 0]]
>>> b = [[0]*3]*3
>>> b
[[0, 0, 0], [0, 0, 0], [0, 0, 0]]
>>> b[1][1] = 1
>>> b
[[0, 1, 0], [0, 1, 0], [0, 1, 0]]
>>>
History
Date User Action Args
2009-09-19 14:59:00nutreginasetrecipients: + nutregina
2009-09-19 14:59:00nutreginasetmessageid: <1253372340.63.0.203470162856.issue6948@psf.upfronthosting.co.za>
2009-09-19 14:58:59nutreginalinkissue6948 messages
2009-09-19 14:58:59nutreginacreate