Adding an object to another module's globals in python
I know this is very evil, but is it possible to add an object to anoth开发者_运维知识库er module's globals, something like:
#module dog.py
import cat
cat.globals.addVar('name','mittens')
and
#module cat.py
print name #mittens
setattr(cat, 'name', 'mittens')
or
cat.name = 'mittens'
精彩评论