Example #1
0
 def disconnect_prof(self):
     import digsbyprofile as d
     if d.profile:
         from AsyncoreThread import call_later
         call_later(d.profile.disconnect)
         if d.profile is self._profile:
             self.unwatch_profile(d.profile)
Example #2
0
 def disconnect_prof(self):
     import digsbyprofile as d
     if d.profile:
         from AsyncoreThread import call_later
         call_later(d.profile.disconnect)
         if d.profile is self._profile:
             self.unwatch_profile(d.profile)
Example #3
0
def netcall(callable, callback = None):
    from AsyncoreThread import call_later
    call_later(callable, callback = callback)
Example #4
0
def netcall(callable, callback=None):
    from AsyncoreThread import call_later
    call_later(callable, callback=callback)