summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-01-13 21:57:52 (GMT)
committerGitHub <noreply@github.com>2023-01-13 21:57:52 (GMT)
commit94f9198f58371ee0dc93e874b685545dcbd55eac (patch)
treec9da3658085ae21149207338fd510663ef3984cb /Misc/NEWS.d/next
parent87f9b1d53f12538c579598304105974378677012 (diff)
downloadcpython-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.rst1
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.