Issue 21533: Dicts take iterables, not iterators. Patch by Wolfgang Maier.
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst
index 9e236a5..f229967 100644
--- a/Doc/library/stdtypes.rst
+++ b/Doc/library/stdtypes.rst
@@ -1989,8 +1989,8 @@
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
diff --git a/Misc/ACKS b/Misc/ACKS
index 9ae3341..afe212c 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -819,6 +819,7 @@
Nick Maclaren
Don MacMillen
Tomasz Maćkowiak
+Wolfgang Maier
Steve Majewski
Marek Majkowski
Grzegorz Makarewicz