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
There is a bug in python3.7 and python3.8, which affects pynet:
This patch fixes it:
--- /usr/lib/python3.7/asyncio/base_events.py.bak 2019-02-21 18:42:17.060122277 +0100 +++ /usr/lib/python3.7/asyncio/base_events.py 2019-02-21 18:49:36.886866750 +0100 @@ -942,8 +942,8 @@ sock = None continue if self._debug: - logger.debug("connect %r to %r", sock, address) - await self.sock_connect(sock, address) + logger.debug("connect %r to %r", sock, (host, port)) + await self.sock_connect(sock, (host, port)) except OSError as exc: if sock is not None: sock.close()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is a bug in python3.7 and python3.8, which affects pynet:
This patch fixes it:
The text was updated successfully, but these errors were encountered: