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 benjamin.peterson
Recipients benjamin.peterson, eric
Date 2008-10-12.14:08:36
SpamBayes Score 1.8666138e-05
Marked as misclassified No
Message-id <1223820517.22.0.447500101786.issue4109@psf.upfronthosting.co.za>
In-reply-to
Content
Inplace operators ("+=", "-=" etc) are assignments since in the case of
immutable types like str

code += "some string"

is equivalent to

code = code + "some string"
History
Date User Action Args
2008-10-12 14:08:37benjamin.petersonsetrecipients: + benjamin.peterson, eric
2008-10-12 14:08:37benjamin.petersonsetmessageid: <1223820517.22.0.447500101786.issue4109@psf.upfronthosting.co.za>
2008-10-12 14:08:36benjamin.petersonlinkissue4109 messages
2008-10-12 14:08:36benjamin.petersoncreate