Amaury Forgeot d'Arc added the comment:
This is a duplicate of issue11205.
--
nosy: +amaury.forgeotdarc
resolution: -> duplicate
status: open -> closed
superseder: -> Evaluation order of dictionary display is different from
reference manual.
___
P
New submission from Sandro Tosi :
Hello, following up
http://mail.python.org/pipermail/docs/2011-December/006782.html , I'm opening
this issue to have others confirmation of what's happening:
echo -e "def ev(r):\nprint(r)\nreturn r\n\n{ev(1): ev(2), ev(3):
ev(4)}" | ./python
2
1
4
3