[issue13729] Evaluation order for dics key/value

2012-01-09 Thread Amaury Forgeot d'Arc
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

[issue13729] Evaluation order for dics key/value

2012-01-07 Thread Sandro Tosi
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