私がやりたいことは次のようなものです:
template.py
def dummy_func():
print(VAR)
# more functions like this to follow
fabfile.py
# this gets called by fabric (fabfile.org)
# safe to think of it as ant build.xml
import template
template.VAR = 'some_val'
from template import *
つまり、他のモジュールが必要な変数を「拡張」する必要があるテンプレートモジュールがあります。これは機能的な方法で (オブジェクトの継承ではなく) 実行できますか?
編集: もう少しコードを追加しました。