I don't know it is a feature, or implement detail:

>>> class C(object): pass
...
>>> c = C()
>>> setattr(c, ' ', 3)
>>> getattr(c, ' ')
3
>>> setattr(c, 'with blank', 4)
>>> getattr(c, 'with blank')
4

getattr / setattr seems treat any string as attribute name.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to