summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorDarioDaF <dario.fagotto@gmail.com>2022-12-10 23:07:02 (GMT)
committerGitHub <noreply@github.com>2022-12-10 23:07:02 (GMT)
commit1bb68ba6d9de6bb7f00aee11d135123163f15887 (patch)
tree1be51c00ff9587e32cd497b2948506b65f7cbf4b /Misc/NEWS.d
parentd5f8a2b6ad408368e728a389da918cead3ef7ee9 (diff)
downloadcpython-1bb68ba6d9de6bb7f00aee11d135123163f15887.zip
cpython-1bb68ba6d9de6bb7f00aee11d135123163f15887.tar.gz
cpython-1bb68ba6d9de6bb7f00aee11d135123163f15887.tar.bz2
gh-99941: Ensure that asyncio.Protocol.data_received receives immutable bytes (#100053)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Windows/2022-12-06-11-16-46.gh-issue-99941.GmUQ6o.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2022-12-06-11-16-46.gh-issue-99941.GmUQ6o.rst b/Misc/NEWS.d/next/Windows/2022-12-06-11-16-46.gh-issue-99941.GmUQ6o.rst
new file mode 100644
index 0000000..a019d72
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2022-12-06-11-16-46.gh-issue-99941.GmUQ6o.rst
@@ -0,0 +1,2 @@
+Ensure that :func:`asyncio.Protocol.data_received` receives an immutable
+:class:`bytes` object (as documented), instead of :class:`bytearray`.