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 beta990
Recipients beta990
Date 2014-05-25.23:24:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401060287.6.0.539764959751.issue21576@psf.upfronthosting.co.za>
In-reply-to
Content
import copy

ship = {'Name': 'Slagschip', 'Blocks': 5}

shipData = copy.deepcopy(ship) # needed, otherwise linked-object
shipData['uuid'] = Id # unique Id

Is this the correct Python behavior?
History
Date User Action Args
2014-05-25 23:24:47beta990setrecipients: + beta990
2014-05-25 23:24:47beta990setmessageid: <1401060287.6.0.539764959751.issue21576@psf.upfronthosting.co.za>
2014-05-25 23:24:47beta990linkissue21576 messages
2014-05-25 23:24:47beta990create