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 mark.dickinson
Recipients BreamoreBoy, barry, ethan.furman, mark, mark.dickinson, martin.panter, serhiy.storchaka, terry.reedy
Date 2014-08-06.19:55:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1407354943.13.0.454584624773.issue22123@psf.upfronthosting.co.za>
In-reply-to
Content
+1 for the 'namespace' builtin.  It looks as though whoever wrote `SimpleNamespace.__repr__` anticipated this:

>>> ns = types.SimpleNamespace(a=3, b=4)
>>> ns
namespace(a=3, b=4)
History
Date User Action Args
2014-08-06 19:55:43mark.dickinsonsetrecipients: + mark.dickinson, barry, terry.reedy, mark, BreamoreBoy, ethan.furman, martin.panter, serhiy.storchaka
2014-08-06 19:55:43mark.dickinsonsetmessageid: <1407354943.13.0.454584624773.issue22123@psf.upfronthosting.co.za>
2014-08-06 19:55:43mark.dickinsonlinkissue22123 messages
2014-08-06 19:55:43mark.dickinsoncreate