summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/collections/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py
index 835cc36..aee79b9 100644
--- a/Lib/collections/__init__.py
+++ b/Lib/collections/__init__.py
@@ -429,7 +429,7 @@ def namedtuple(typename, field_names, *, rename=False, defaults=None, module=Non
_dict, _zip = dict, zip
def _asdict(self):
- 'Return a new OrderedDict which maps field names to their values.'
+ 'Return a new dict which maps field names to their values.'
return _dict(_zip(self._fields, self))
def __getnewargs__(self):