コード例 #1
0
ファイル: digsbysplash.py プロジェクト: sgricci/digsby
 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)
コード例 #2
0
ファイル: digsbysplash.py プロジェクト: AlexUlrich/digsby
 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)
コード例 #3
0
ファイル: __init__.py プロジェクト: AlexUlrich/digsby
def netcall(callable, callback = None):
    from AsyncoreThread import call_later
    call_later(callable, callback = callback)
コード例 #4
0
ファイル: __init__.py プロジェクト: sgricci/digsby
def netcall(callable, callback=None):
    from AsyncoreThread import call_later
    call_later(callable, callback=callback)