コード例 #1
0
ファイル: zephyr.py プロジェクト: geofft/python-zephyr
def init():
    global __inited
    if not __inited:
        _z.initialize()
        _z.openPort()
        _z.cancelSubs()
        __inited = True
コード例 #2
0
ファイル: zephyr.py プロジェクト: mit-scripts/python-zephyr
def init():
    global __inited
    if not __inited:
        _z.initialize()
        _z.openPort()
        _z.cancelSubs()
        __inited = True
コード例 #3
0
ファイル: zephyr.py プロジェクト: geofft/python-zephyr
 def __del__(self):
     _z.cancelSubs()
     super(Subscriptions, self).__del__()
コード例 #4
0
ファイル: zephyr.py プロジェクト: Stebalien/python-zephyr
 def clear(self):
     _z.cancelSubs()
     super(Subscriptions, self).clear()
コード例 #5
0
ファイル: zephyr.py プロジェクト: dehnert/python-zephyr
 def __del__(self):
     _z.cancelSubs()
コード例 #6
0
ファイル: zephyr.py プロジェクト: mit-scripts/python-zephyr
 def __del__(self):
     _z.cancelSubs()
     super(Subscriptions, self).__del__()