tests: Add test for evaluation order of dictionary key/value pairs.

In Python 3.4 the value is evaluated before the key.  In Python 3.5 it's
key then value.
This commit is contained in:
Damien George
2015-10-08 13:15:07 +01:00
parent 9f5f156b9d
commit 4fb5ff86ee
2 changed files with 5 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
None
['a', 'b']
('a', 'b') {'kw_arg': None}
2
1
SyntaxError
SyntaxError
3.4