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 John Cooke, eric.smith, rhettinger
Date 2018-06-18.02:25:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1529288728.6.0.56676864532.issue33880@psf.upfronthosting.co.za>
In-reply-to
Content
Of late, people have been very concerned with namedtuple construction time, so I'm disinclined to add this overhead for something that doesn't seem to have been a problem in the real world.

Also, the SyntaxError seems reasonable.  That is the same error given by a regular function definition or types.SimpleNamespace:

    >>> def f(µ=1, μ=2):
    	    pass
    SyntaxError: duplicate argument 'μ' in function definition

    >>> SimpleNamespace(µ=1, μ=2)
    SyntaxError: keyword argument repeated
History
Date User Action Args
2018-06-18 02:25:28rhettingersetrecipients: + rhettinger, eric.smith, John Cooke
2018-06-18 02:25:28rhettingersetmessageid: <1529288728.6.0.56676864532.issue33880@psf.upfronthosting.co.za>
2018-06-18 02:25:28rhettingerlinkissue33880 messages
2018-06-18 02:25:28rhettingercreate