Should the following be legal?

>>> class TEST(object): pass
...
>>> t = TEST()
>>> setattr(t, "", "123")
>>> getattr(t, "")
'123'

~Sean
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to