[issue39449] New Assignment operator

2020-01-25 Thread SilentGhost
Change by SilentGhost : -- resolution: -> rejected stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue39449] New Assignment operator

2020-01-25 Thread Aurora
Aurora added the comment: That's a nice simple idea. -- nosy: +opensource-assist ___ Python tracker ___ ___ Python-bugs-list

[issue39449] New Assignment operator

2020-01-24 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This is a syntax change and it should be discussed in python-ideas mailing list first and would require a PEP. I would suggest closing it now and reopening it if the idea is accepted. -- nosy: +xtreak

[issue39449] New Assignment operator

2020-01-24 Thread Arthur Fibich
New submission from Arthur Fibich : It's just a personal thing, but I kind of miss the following possibility in Python (and likewise every other language I know): Like a += 1 is the same as a = a + 1 I'd love to see a .= b() as an opportunity to express a = a.b() Possible usages are for