javascript では、オブジェクトの外部にシグナルを送信したいメソッドを含むオブジェクトがある場合、次のようなことを行う可能性があります...
function class1(arg1){
...
//something has happened - send out an alert
this.method1();
...
}
var obj1 = new class1();
//define function to respond to the request from obj1
obj1.method1 = function(){ ... }
Pythonでこれを行う同等の方法はありますか? (パイソン2)。