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 Jim.Peterson
Recipients Jim.Peterson
Date 2014-04-08.16:35:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1396974950.77.0.151698168246.issue21181@psf.upfronthosting.co.za>
In-reply-to
Content
The result returned by somenamedtuple._source seem inconsistent, in that it defines __dict__ as:

    __dict__ = property(_asdict)

even though it imports property as:

from builtins import property as _property

and the namedtuple fields are defined using _property, instead.  It still compiles and functions properly, but whatever compelled the developer to declare the named fields using _property seems to be ignored in the definition of __dict__.
History
Date User Action Args
2014-04-08 16:35:50Jim.Petersonsetrecipients: + Jim.Peterson
2014-04-08 16:35:50Jim.Petersonsetmessageid: <1396974950.77.0.151698168246.issue21181@psf.upfronthosting.co.za>
2014-04-08 16:35:50Jim.Petersonlinkissue21181 messages
2014-04-08 16:35:50Jim.Petersoncreate