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 rhettinger
Recipients christian.heimes, eric.araujo, eric.smith, eric.snow, rhettinger, vstinner
Date 2014-03-20.13:02:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395320525.12.0.848799329628.issue19640@psf.upfronthosting.co.za>
In-reply-to
Content
The size of the _source attribute is about 2k per namedtuple class:

>>> from collections import namedtuple
>>> Response = namedtuple('Response', ['code', 'msg', 'compressed', 'written'])
>>> len(Response._source)
2174
History
Date User Action Args
2014-03-20 13:02:05rhettingersetrecipients: + rhettinger, vstinner, eric.smith, christian.heimes, eric.araujo, eric.snow
2014-03-20 13:02:05rhettingersetmessageid: <1395320525.12.0.848799329628.issue19640@psf.upfronthosting.co.za>
2014-03-20 13:02:05rhettingerlinkissue19640 messages
2014-03-20 13:02:04rhettingercreate