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 aeros
Recipients aeros, dai dai
Date 2019-07-13.07:24:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1563002682.49.0.0125615142847.issue37582@roundup.psfhosted.org>
In-reply-to
Content
Thanks for the suggestion.

Personally I wouldn't be in favor of this particular change. It doesn't add any additional functionality beyond saving a couple of characters. Also, this could quickly get rather convoluted. For separation and clarity, the assignment operators ("+=", "-=", "/=", "*=", etc) should affect one variable. If you wanted to fit multiple on the same line, you could simply use:

>>> a += 1; b += 2
History
Date User Action Args
2019-07-13 07:24:42aerossetrecipients: + aeros, dai dai
2019-07-13 07:24:42aerossetmessageid: <1563002682.49.0.0125615142847.issue37582@roundup.psfhosted.org>
2019-07-13 07:24:42aeroslinkissue37582 messages
2019-07-13 07:24:42aeroscreate