From: Raymond Hettinger Date: Thu, 20 Mar 2014 13:42:31 +0000 (-0700) Subject: Clean-up docstring X-Git-Tag: v3.4.1rc1~209^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d852e997f4117f30b62874cdbfc28e93ee3804c4;p=python Clean-up docstring --- diff --git a/Lib/collections/__init__.py b/Lib/collections/__init__.py index 02bdc57c9f..d6deb6a7b2 100644 --- a/Lib/collections/__init__.py +++ b/Lib/collections/__init__.py @@ -274,9 +274,7 @@ class {typename}(tuple): return OrderedDict(zip(self._fields, self)) def _asdict(self): - '''Return a new OrderedDict which maps field names to their values. - This method is obsolete. Use vars(nt) or nt.__dict__ instead. - ''' + 'Return a new OrderedDict which maps field names to their values.' return self.__dict__ def __getnewargs__(self):