This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author nneonneo
Recipients georg.brandl, nneonneo
Date 2009-12-28.00:34:18
SpamBayes Score 0.014502283
Marked as misclassified No
Message-id <1261960461.08.0.700949009831.issue7586@psf.upfronthosting.co.za>
In-reply-to
Content
In the documentation for the namedtuple
(http://docs.python.org/3.1/library/collections.html), the following
phrase is incorrect:

The subclass shown above sets __slots__ to an empty tuple. This keeps
keep memory requirements low by preventing the creation of instance
dictionaries.

It should read

The subclass shown above sets __slots__ to an empty tuple. This helps
keep memory requirements low by preventing the creation of instance
dictionaries.

or

The subclass shown above sets __slots__ to an empty tuple. This keeps
memory requirements low by preventing the creation of instance dictionaries.

(either change "keeps" to "helps", or delete the next "keep").
History
Date User Action Args
2009-12-28 00:34:21nneonneosetrecipients: + nneonneo, georg.brandl
2009-12-28 00:34:21nneonneosetmessageid: <1261960461.08.0.700949009831.issue7586@psf.upfronthosting.co.za>
2009-12-28 00:34:19nneonneolinkissue7586 messages
2009-12-28 00:34:19nneonneocreate