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
代码实验环境: 操作系统:Windows 10 专业版, 64bit Python环境:anaconda 3, Python 3.7.6
书中代码: if e.args[0] != errno.EAGAIN:
问题阐述: 经过实验验证,该exception返回的e.args[0] = 10035。
代码应修改为: if e.args[0] != errno.EWOULDBLOCK:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
代码实验环境:
操作系统:Windows 10 专业版, 64bit
Python环境:anaconda 3, Python 3.7.6
书中代码:
if e.args[0] != errno.EAGAIN:
问题阐述:
经过实验验证,该exception返回的e.args[0] = 10035。
代码应修改为:
if e.args[0] != errno.EWOULDBLOCK:
The text was updated successfully, but these errors were encountered: