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 Matthias v/d Meent
Recipients Matthias v/d Meent, docs@python
Date 2015-11-12.02:52:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1447296775.39.0.293549670767.issue25603@psf.upfronthosting.co.za>
In-reply-to
Content
Almost at the end of the page, under Usage of Typing.NamedTuple(...), this code snippet occurs: `Employee = typing.NamedTuple('Employee', [('name', str), 'id', int)])`. Unfortunately, this has an error in its parenthesis. 

This can easily be fixed by adding an opening bracket before the `'id'`-part, as seen here: `Employee = typing.NamedTuple('Employee', [('name', str), ('id', int)])`.
History
Date User Action Args
2015-11-12 02:52:55Matthias v/d Meentsetrecipients: + Matthias v/d Meent, docs@python
2015-11-12 02:52:55Matthias v/d Meentsetmessageid: <1447296775.39.0.293549670767.issue25603@psf.upfronthosting.co.za>
2015-11-12 02:52:55Matthias v/d Meentlinkissue25603 messages
2015-11-12 02:52:54Matthias v/d Meentcreate