def stop_advertising (sock): try: _bt.sdp_stop_advertising (sock._sock) except _bt.error as e: raise BluetoothError (str (e))
def stop_advertising(sock): try: _bt.sdp_stop_advertising(sock._sock) except _bt.error, e: raise BluetoothError(str(e))
def stop_advertising(sock): try: _bt.sdp_stop_advertising(sock._sock) except _bt.error as e: raise BluetoothError(*e.args)