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 eric.smith
Recipients eric.smith, poornaprudhvi, rhettinger, terry.reedy
Date 2018-02-27.10:37:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1519727825.07.0.467229070634.issue32961@psf.upfronthosting.co.za>
In-reply-to
Content
See https://docs.python.org/2/library/collections.html#collections.namedtuple

namedtuple is called as:
collections.namedtuple(typename, field_names[, verbose=False][, rename=False])

So you are passing in
typename = 'Name'
field_names = 'a'
verbose = 'b'
rename = 'c'

'b' is a True value, so that's why it's showing the output.

You want to be using: 
sample = namedtuple('Name', ['a', 'b', 'c'])
History
Date User Action Args
2018-02-27 10:37:05eric.smithsetrecipients: + eric.smith, rhettinger, terry.reedy, poornaprudhvi
2018-02-27 10:37:05eric.smithsetmessageid: <1519727825.07.0.467229070634.issue32961@psf.upfronthosting.co.za>
2018-02-27 10:37:05eric.smithlinkissue32961 messages
2018-02-27 10:37:04eric.smithcreate