]> granicus.if.org Git - python/commitdiff
Use "dictionary literals" instead of "dictionaries", as suggested by Just.
authorGustavo Niemeyer <gustavo@niemeyer.net>
Mon, 16 Dec 2002 14:09:22 +0000 (14:09 +0000)
committerGustavo Niemeyer <gustavo@niemeyer.net>
Mon, 16 Dec 2002 14:09:22 +0000 (14:09 +0000)
Misc/NEWS

index dea62dd2db5c1bd2532986e0aa1353a90a8f1722..772ae95bdca87fcd545ed9854128bca5dd6f1a09 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
 -----------------