diff options
| author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-03 00:43:13 (GMT) |
|---|---|---|
| committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-06-03 00:43:13 (GMT) |
| commit | 15ec11e4e31b1ed4254057b8d08bea0ab95d8a3b (patch) | |
| tree | 77a4994120e2f591768ebfd2f442de49062fed92 | |
| parent | 06d736a8916b3ff603097cca105a206232593fae (diff) | |
| parent | b52f8767679a7586b61ebac731af234758082b81 (diff) | |
| download | cpython-15ec11e4e31b1ed4254057b8d08bea0ab95d8a3b.zip cpython-15ec11e4e31b1ed4254057b8d08bea0ab95d8a3b.tar.gz cpython-15ec11e4e31b1ed4254057b8d08bea0ab95d8a3b.tar.bz2 | |
Merge with 3.4
| -rw-r--r-- | Doc/library/stdtypes.rst | 4 | ||||
| -rw-r--r-- | Misc/ACKS | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index bb421af..e41fa6e 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -3031,8 +3031,8 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098: If no positional argument is given, an empty dictionary is created. If a positional argument is given and it is a mapping object, a dictionary is created with the same key-value pairs as the mapping object. Otherwise, - the positional argument must be an :term:`iterator` object. Each item in - the iterable must itself be an iterator with exactly two objects. The + the positional argument must be an :term:`iterable` object. Each item in + the iterable must itself be an iterable with exactly two objects. The first object of each item becomes a key in the new dictionary, and the second object the corresponding value. If a key occurs more than once, the last value for that key becomes the corresponding value in the new @@ -824,6 +824,7 @@ Tim MacKenzie Nick Maclaren Don MacMillen Tomasz Maćkowiak +Wolfgang Maier Steve Majewski Marek Majkowski Grzegorz Makarewicz |
