diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-01-13 21:57:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 21:57:52 (GMT) |
commit | 94f9198f58371ee0dc93e874b685545dcbd55eac (patch) | |
tree | c9da3658085ae21149207338fd510663ef3984cb /Misc/NEWS.d/next | |
parent | 87f9b1d53f12538c579598304105974378677012 (diff) | |
download | cpython-94f9198f58371ee0dc93e874b685545dcbd55eac.zip cpython-94f9198f58371ee0dc93e874b685545dcbd55eac.tar.gz cpython-94f9198f58371ee0dc93e874b685545dcbd55eac.tar.bz2 |
[3.10] GH-100573: Fix server hang caused by os.stat() on named pipe (Windows) (GH-100959) (#101020)
(cherry picked from commit 1bc7a736837272b15ad3a7aa472977bc720d1033)
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-01-12-01-18-13.gh-issue-100573.KDskqo.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-01-12-01-18-13.gh-issue-100573.KDskqo.rst b/Misc/NEWS.d/next/Library/2023-01-12-01-18-13.gh-issue-100573.KDskqo.rst new file mode 100644 index 0000000..97b95d1 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-01-12-01-18-13.gh-issue-100573.KDskqo.rst @@ -0,0 +1 @@ +Fix a Windows :mod:`asyncio` bug with named pipes where a client doing ``os.stat()`` on the pipe would cause an error in the server that disabled serving future requests. |