[Python-checkins] peps: Fix a typo

brett.cannon python-checkins at python.org
Tue Aug 13 23:04:27 CEST 2013


http://hg.python.org/peps/rev/6e7708f29c04
changeset:   5055:6e7708f29c04
user:        Brett Cannon <brett at python.org>
date:        Tue Aug 13 17:04:22 2013 -0400
summary:
  Fix a typo

files:
  pep-0448.txt |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/pep-0448.txt b/pep-0448.txt
--- a/pep-0448.txt
+++ b/pep-0448.txt
@@ -25,7 +25,7 @@
 
     >>> print(*[1], *[2], 3)
     1 2 3
-    >>> dict(**{'x': 1}, y=3, **{'z': 2})
+    >>> dict(**{'x': 1}, y=2, **{'z': 3})
     {'x': 1, 'y': 2, 'z': 3}
 
 Function calls currently have the restriction that keyword arguments

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list