summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2019-09-10 12:56:14 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-09-10 12:56:14 (GMT)
commit12c122ae958a55c9874ed4c7d7805ceb084411d7 (patch)
tree5e5dad44e8cd210e1f8d8348ed5be9695aee4d27 /Misc
parent9a94093189417adddd6b59d6c80cc5544630c8aa (diff)
downloadcpython-12c122ae958a55c9874ed4c7d7805ceb084411d7.zip
cpython-12c122ae958a55c9874ed4c7d7805ceb084411d7.tar.gz
cpython-12c122ae958a55c9874ed4c7d7805ceb084411d7.tar.bz2
bpo-38066: Hide internal Stream methods (GH-15762)
feed_eof(), feed_data(), set_exception(), and set_transport() are prefixed with underscore now. https://bugs.python.org/issue38066
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-09-09-14-39-47.bpo-38066.l9mWv-.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-09-14-39-47.bpo-38066.l9mWv-.rst b/Misc/NEWS.d/next/Library/2019-09-09-14-39-47.bpo-38066.l9mWv-.rst
new file mode 100644
index 0000000..a69924f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-09-09-14-39-47.bpo-38066.l9mWv-.rst
@@ -0,0 +1,2 @@
+Hide internal asyncio.Stream methods: feed_eof(), feed_data(),
+set_exception() and set_transport().