Zachary Ware added the comment:
Agreed with Karthikeyan. This is a PEP-level change, meaning it will first
need to find some approval on python-ideas, a PEP will need to be written and
eventually approved before an issue should be opened to implement the change;
thus I'm closing this issue
Karthikeyan Singaravelan added the comment:
This needs to be discussed on python-ideas mailing list. Inplace operation for
walrus operator like :*= feels difficulty to read than (x := x * 2) and would
require changes to grammar.
--
nosy: +xtreak
_
New submission from mohamad khosravi :
support "Assignment Operators":
x = "ME"
while len(x:*=2) < 64:print("value doubled!")
--
messages: 357507
nosy: mohamad khosravi
priority: normal
severity: normal
status: open
title: support Assignment Operators
versions: Python 3.9