Changes by Brynjar Smári Bjarnason :
--
status: open -> closed
___
Python tracker
<http://bugs.python.org/issue22409>
___
___
Python-bugs-list mailing list
Un
Brynjar Smári Bjarnason added the comment:
Thanks, I'll report it to Continuum IO.
--
___
Python tracker
<http://bugs.python.org/issue22409>
___
___
Pytho
New submission from Brynjar Smári Bjarnason:
In Python 3.4.1 installed with Anaconda. I tried the following
(expecting an OrderedDict as result):
>>>from collections import namedtuple
>>>NT = namedtuple("NT",["a","b"])
>>>nt = NT(1,2)