diff options
author | Gustavo Niemeyer <gustavo@niemeyer.net> | 2002-12-16 14:09:22 (GMT) |
---|---|---|
committer | Gustavo Niemeyer <gustavo@niemeyer.net> | 2002-12-16 14:09:22 (GMT) |
commit | 17c5a33582be263e3d3484f1c16f17dadeea5b6f (patch) | |
tree | 5c9ecd1c204375a4cde06a035d298aea2e91c9ab | |
parent | 78429a6aa6bb4f8527f0c6be678555ef26b62d19 (diff) | |
download | cpython-17c5a33582be263e3d3484f1c16f17dadeea5b6f.zip cpython-17c5a33582be263e3d3484f1c16f17dadeea5b6f.tar.gz cpython-17c5a33582be263e3d3484f1c16f17dadeea5b6f.tar.bz2 |
Use "dictionary literals" instead of "dictionaries", as suggested by Just.
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -331,9 +331,9 @@ Core and builtins - sys.exit() inadvertently allowed more than one argument. An exception will now be raised if more than one argument is used. -- Changed evaluation order of dictionaries to conform to the general - left to right evaluation order rule. Now {f1(): f2()} will evaluate - f1 first. +- Changed evaluation order of dictionary literals to conform to the + general left to right evaluation order rule. Now {f1(): f2()} will + evaluate f1 first. Extension modules ----------------- |