From a6fa2728fb48269a8634ccbba4416a4e32fbbe5b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Jan 2008 17:25:36 +0000 Subject: [PATCH] Clarify sentence in tutorial. Thanks to Marek Kubica. --- Doc/tutorial/controlflow.rst | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index f51b66ca076..5b05aed2d2f 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -457,10 +457,9 @@ and of course it would print:: shopkeeper : Michael Palin sketch : Cheese Shop Sketch -Note that the :meth:`sort` method of the list of keyword argument names is -called before printing the contents of the ``keywords`` dictionary; if this is -not done, the order in which the arguments are printed is undefined. - +Note that the list of keyword argument names is created by sorting the result +of the keywords dictionary's ``keys()`` method before printing its contents; +if this is not done, the order in which the arguments are printed is undefined. .. _tut-arbitraryargs: