This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sandro.tosi
Recipients docs@python, sandro.tosi
Date 2012-01-07.16:05:31
SpamBayes Score 1.076212e-05
Marked as misclassified No
Message-id <1325952332.37.0.223922022645.issue13729@psf.upfronthosting.co.za>
In-reply-to
Content
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):\n    print(r)\n    return r\n\n{ev(1): ev(2), ev(3): ev(4)}" | ./python 
2
1
4
3

(this applies for 2.7/3.2/default) so it seems the value expressions are evaluated before the key expressions, so the

{expr1: expr2, expr3: expr4}

in http://docs.python.org/reference/expressions.html#evaluation-order has to be updated in

{expr2: expr1, expr4: expr3}

Is that correct/can someone confirm this is the expected behavior?
History
Date User Action Args
2012-01-07 16:05:32sandro.tosisetrecipients: + sandro.tosi, docs@python
2012-01-07 16:05:32sandro.tosisetmessageid: <1325952332.37.0.223922022645.issue13729@psf.upfronthosting.co.za>
2012-01-07 16:05:31sandro.tosilinkissue13729 messages
2012-01-07 16:05:31sandro.tosicreate