bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-14139)

… as proposed in PEP 572; key is now evaluated before value.





https://bugs.python.org/issue35224
This commit is contained in:
Jörn Heissler 2019-06-22 16:40:55 +02:00 committed by Miss Islington (bot)
parent bb110cc2ed
commit c8a35417db
8 changed files with 53 additions and 7 deletions

View file

@ -2940,8 +2940,8 @@ main_loop:
}
case TARGET(MAP_ADD): {
PyObject *key = TOP();
PyObject *value = SECOND();
PyObject *value = TOP();
PyObject *key = SECOND();
PyObject *map;
int err;
STACK_SHRINK(2);