From: Gustavo Niemeyer Date: Mon, 16 Dec 2002 14:09:22 +0000 (+0000) Subject: Use "dictionary literals" instead of "dictionaries", as suggested by Just. X-Git-Tag: v2.3c1~2996 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17c5a33582be263e3d3484f1c16f17dadeea5b6f;p=thirdparty%2FPython%2Fcpython.git Use "dictionary literals" instead of "dictionaries", as suggested by Just. --- diff --git a/Misc/NEWS b/Misc/NEWS index dea62dd2db5c..772ae95bdca8 100644 --- 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 -----------------