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 barry, brett.cannon, r.david.murray, rhettinger
Date 2013-06-12.00:46:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1370997983.94.0.995901825388.issue18163@psf.upfronthosting.co.za>
In-reply-to
Content
Since the key is already accessible via the "args" attribute, what is the point of a new attribute?

>>> d = {}
>>> try:
	d['roger']
except KeyError as e:
	print(e.args)

	
('roger',)
History
Date User Action Args
2013-06-12 00:46:24rhettingersetrecipients: + rhettinger, barry, brett.cannon, r.david.murray
2013-06-12 00:46:23rhettingersetmessageid: <1370997983.94.0.995901825388.issue18163@psf.upfronthosting.co.za>
2013-06-12 00:46:23rhettingerlinkissue18163 messages
2013-06-12 00:46:23rhettingercreate