-
-
Notifications
You must be signed in to change notification settings - Fork 640
New issue
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
Unused argument in tcp_deadlock.py #19
Comments
Have you tried removing the argument and running the server? :) |
I see what the problem is :) Maybe |
I have made the problem go away entirely by simply calling the server and client with different arguments in the first place. I'm not sure what that didn't occur to me when you first brought up the issue! But thanks for pointing it out, and hopefully this small readability win will help a few readers from being more confused than they need to be. Thanks! |
Thanks for a great book! |
On line 8
def server(host, port, bytecount):
the server takes abytecount
argument that appears not be used inside the procedure.The text was updated successfully, but these errors were encountered: