diff options
author | Andrey Egorov <andr06@gmail.com> | 2017-11-14 09:18:59 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2017-11-14 09:18:59 (GMT) |
commit | e1d62e0b7cc842d6b75b4d480391f4a94e503255 (patch) | |
tree | 643f2a73d4675de5a0f21edd1c517ebc9db0f14f /Misc | |
parent | 56935a53b11b9a70f3e13e460777ec81a5b9195e (diff) | |
download | cpython-e1d62e0b7cc842d6b75b4d480391f4a94e503255.zip cpython-e1d62e0b7cc842d6b75b4d480391f4a94e503255.tar.gz cpython-e1d62e0b7cc842d6b75b4d480391f4a94e503255.tar.bz2 |
bpo-32015: Asyncio looping during simultaneously socket read/write an… (#4386)
* bpo-32015: Asyncio cycling during simultaneously socket read/write and reconnection
* Tests fix
* Tests fix
* News add
* Add new unit tests
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-11-13-17-48-33.bpo-32015.4nqRTD.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-11-13-17-48-33.bpo-32015.4nqRTD.rst b/Misc/NEWS.d/next/Library/2017-11-13-17-48-33.bpo-32015.4nqRTD.rst new file mode 100644 index 0000000..6117e56 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-11-13-17-48-33.bpo-32015.4nqRTD.rst @@ -0,0 +1,2 @@ +Fixed the looping of asyncio in the case of reconnection the socket during +waiting async read/write from/to the socket. |