From f06fba5965b4265c42291d10454f387b76111f26 Mon Sep 17 00:00:00 2001 From: Andre Delfino Date: Sun, 23 Dec 2018 01:14:46 -0300 Subject: [PATCH] Document that dict.fromkeys accepts any iterable for keys (GH-10998) --- Doc/library/stdtypes.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 0262c0292f..c699553c02 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -4239,9 +4239,9 @@ pairs within braces, for example: ``{'jack': 4098, 'sjoerd': 4127}`` or ``{4098: Return a shallow copy of the dictionary. - .. classmethod:: fromkeys(seq[, value]) + .. classmethod:: fromkeys(iterable[, value]) - Create a new dictionary with keys from *seq* and values set to *value*. + Create a new dictionary with keys from *iterable* and values set to *value*. :meth:`fromkeys` is a class method that returns a new dictionary. *value* defaults to ``None``. -- 2.40.0