Commit 17c5a335 authored by Gustavo Niemeyer's avatar Gustavo Niemeyer

Use "dictionary literals" instead of "dictionaries", as suggested by Just.

parent 78429a6a
...@@ -331,9 +331,9 @@ Core and builtins ...@@ -331,9 +331,9 @@ Core and builtins
- sys.exit() inadvertently allowed more than one argument. - sys.exit() inadvertently allowed more than one argument.
An exception will now be raised if more than one argument is used. An exception will now be raised if more than one argument is used.
- Changed evaluation order of dictionaries to conform to the general - Changed evaluation order of dictionary literals to conform to the
left to right evaluation order rule. Now {f1(): f2()} will evaluate general left to right evaluation order rule. Now {f1(): f2()} will
f1 first. evaluate f1 first.
Extension modules Extension modules
----------------- -----------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment