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 binnisb, dstufft, eric.araujo, rhettinger
Date 2014-09-14.16:33:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1410712435.91.0.0638396595316.issue22409@psf.upfronthosting.co.za>
In-reply-to
Content
> so the result is an empty dict.

It works fine for me in the standard distribution:

Python 3.4.1 (v3.4.1:c0e311e010fc, May 18 2014, 00:54:21) 
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "copyright", "credits" or "license()" for more information.
>>> from collections import namedtuple
>>> NT = namedtuple("NT",["a","b"])
>>> nt = NT(1,2)
>>> print(vars(nt))
OrderedDict([('a', 1), ('b', 2)])

There may be something amiss with the Anaconda distribution.  I suggest reporting this to Continuum IO (the producers of that distribution).
History
Date User Action Args
2014-09-14 16:33:56rhettingersetrecipients: + rhettinger, eric.araujo, dstufft, binnisb
2014-09-14 16:33:55rhettingersetmessageid: <1410712435.91.0.0638396595316.issue22409@psf.upfronthosting.co.za>
2014-09-14 16:33:55rhettingerlinkissue22409 messages
2014-09-14 16:33:55rhettingercreate