В main.py у меня есть
Код: Выделить всё
def foo():
HTTPHelper.setHost("foo")
host = HTTPHelper.host()
Код: Выделить всё
_host = None
def setHost(host):
_host = host
def host():
return _host
Подробнее здесь: https://stackoverflow.com/questions/386 ... -no-effect