<div dir="ltr">I made some kind of answering machine for pidgin client that uses Linuxes DBus to make connection with pidgin. the code is this:<br><br>    class DBus_Answer():<br>        def __init__(self, text = "No text"):  <br>
            self.answer = text<br>            bus_loop = DBusQtMainLoop(set_as_default=True)<br>            self.bus = dbus.SessionBus()<br>            self.bus.add_signal_receiver(self.pidgin_control_func,<br>                                         dbus_interface="im.pidgin.purple.PurpleInterface",<br>
                                         signal_name="ReceivedImMsg")<br>        <br>        def pidgin_control_func(self, account, sender, message, conversation, flags):<br>            obj = self.bus.get_object("im.pidgin.purple.PurpleService", "/im/pidgin/purple/PurpleObject")<br>
            purple = dbus.Interface(obj, "im.pidgin.purple.PurpleInterface")<br>            purple.PurpleConvImSend(purple.PurpleConvIm(conversation), self.answer)<br><br>now I want to use it as a module in another program. I called it like this:<br>
<br>    answering_machine.DBus_Answer(message)<br><br>the problem is, when I stop the second program (the program that has this one as a module) and then start it again, I'll get a `segmentation fault` because it want to make another connection to the DBus and it seams it's not regular!<br>
<br>Other wise I want to give the chance of disabling this module to user. I tried to use an `if` statement. It will work for the first time. but if user run the module for once, he can't disable it any more.<br><br clear="all">
<br>-- <br><div dir="ltr"><b>Shahin <span style="color:rgb(255,0,0)">A</span>zad!</b><br>My personal <b>blog</b>:<a> http://shahinism.com</a><br>I like to keep it respectful with <b>OpenRespect</b> (<a href="http://www.openrespect.org/" target="_blank">http://www.openrespect.org</a>)<br>
</div><br>
</div>