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 veky
Recipients eric.smith, mscholle, steven.daprano, veky
Date 2022-02-02.16:59:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1643821192.64.0.642221969712.issue46612@roundup.psfhosted.org>
In-reply-to
Content
You've managed to write 3 messages already, without at any point mentioning what _really_ happens when you += something.

    a += b means (is closest to) a = type(a).__iadd__(a, b)

You focus all the time on __iadd__ call, disregarding that its result it assigned back to a in scope.
History
Date User Action Args
2022-02-02 16:59:52vekysetrecipients: + veky, eric.smith, steven.daprano, mscholle
2022-02-02 16:59:52vekysetmessageid: <1643821192.64.0.642221969712.issue46612@roundup.psfhosted.org>
2022-02-02 16:59:52vekylinkissue46612 messages
2022-02-02 16:59:52vekycreate