diff options
author | Yury Selivanov <yury@magic.io> | 2017-11-13 18:38:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-13 18:38:22 (GMT) |
commit | ce12629c84400c52734859e43b2386deb2b6da12 (patch) | |
tree | cdb52f53c12fb119fa717071fd3ff18247432720 /Misc | |
parent | f76231f89a7231fd486b37f728fbb4aab389e4d7 (diff) | |
download | cpython-ce12629c84400c52734859e43b2386deb2b6da12.zip cpython-ce12629c84400c52734859e43b2386deb2b6da12.tar.gz cpython-ce12629c84400c52734859e43b2386deb2b6da12.tar.bz2 |
bpo-28369: Enhance transport socket check in add_reader/writer (#4365)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-10-16-27-26.bpo-28369.IS74nd.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-10-16-27-26.bpo-28369.IS74nd.rst b/Misc/NEWS.d/next/Library/2017-11-10-16-27-26.bpo-28369.IS74nd.rst new file mode 100644 index 0000000..111c961 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-10-16-27-26.bpo-28369.IS74nd.rst @@ -0,0 +1,4 @@ +Enhance add_reader/writer check that socket is not used by some transport. +Before, only cases when add_reader/writer were called with an int FD were +supported. Now the check is implemented correctly for all file-like +objects. |