diff options
author | Georg Brandl <georg@python.org> | 2007-05-21 20:34:16 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-05-21 20:34:16 (GMT) |
commit | 2134e754f27462264c8da45110c580eb7b0b906f (patch) | |
tree | 8968da0c97423491b43d2134e0961ca5b915aa3e /Doc/ref/ref5.tex | |
parent | 70f996be24dd00c11500cd99d92e8b2a1dfaa501 (diff) | |
download | cpython-2134e754f27462264c8da45110c580eb7b0b906f.zip cpython-2134e754f27462264c8da45110c580eb7b0b906f.tar.gz cpython-2134e754f27462264c8da45110c580eb7b0b906f.tar.bz2 |
Patch #1686487: you can now pass any mapping after '**' in function calls.
Diffstat (limited to 'Doc/ref/ref5.tex')
-rw-r--r-- | Doc/ref/ref5.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index 17c57d4..73015aa 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -704,7 +704,7 @@ It is unusual for both keyword arguments and the this confusion does not arise. If the syntax \samp{**expression} appears in the function call, -\samp{expression} must evaluate to a (subclass of) dictionary, the +\samp{expression} must evaluate to a mapping, the contents of which are treated as additional keyword arguments. In the case of a keyword appearing in both \samp{expression} and as an explicit keyword argument, a \exception{TypeError} exception is |