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 rhettinger
Date 2009-03-28.17:08:35
SpamBayes Score 0.0031111888
Marked as misclassified No
Message-id <1238260121.89.0.108446240417.issue5587@psf.upfronthosting.co.za>
In-reply-to
Content
The vars() builtin now returns a hard to view object.  Formerly, it had
a useful __repr__.


Python 3.1a1 
>>> class A: pass
>>> vars(A)
<dict_proxy object at 0x0131FE70>



IDLE 2.6.1      
>>> class A: pass
>>> vars(A)
{'__module__': '__main__', '__doc__': None}
History
Date User Action Args
2009-03-28 17:08:43rhettingersetrecipients: + rhettinger
2009-03-28 17:08:41rhettingersetmessageid: <1238260121.89.0.108446240417.issue5587@psf.upfronthosting.co.za>
2009-03-28 17:08:38rhettingerlinkissue5587 messages
2009-03-28 17:08:36rhettingercreate