We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey, So I know its in the docs, but was wondering if there is a way to get Python 2 support? What needs to be done to support python2?
The text was updated successfully, but these errors were encountered:
https://github.com/happyleavesaoc/python-orvibo/blob/master/orvibo/s20.py#L57 Replace by: udp = threading.Thread(target=_listen) (daemon param is not allowed in Py2)
udp = threading.Thread(target=_listen)
https://github.com/happyleavesaoc/python-orvibo/blob/master/orvibo/s20.py#L273 Replace by: def _udp_transact(self, payload, handler, broadcast=False, timeout=TIMEOUT, *args): Py2 only accepts possitional arguments at the end.
def _udp_transact(self, payload, handler, broadcast=False, timeout=TIMEOUT, *args):
Sorry, something went wrong.
No branches or pull requests
Hey,
So I know its in the docs, but was wondering if there is a way to get Python 2 support?
What needs to be done to support python2?
The text was updated successfully, but these errors were encountered: