I'm trying to use setattr inside a module.
>From outside a module it's easy:

import spam
name="hello"
value=1
setattr(spam, name, value)

But if I want to do this inside the module spam itself, what I've to
pass to setattr as first argument?

Thanks a lot for your time.
Marco.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to