diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2019-09-10 12:56:14 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-10 12:56:14 (GMT) |
commit | 12c122ae958a55c9874ed4c7d7805ceb084411d7 (patch) | |
tree | 5e5dad44e8cd210e1f8d8348ed5be9695aee4d27 /Misc | |
parent | 9a94093189417adddd6b59d6c80cc5544630c8aa (diff) | |
download | cpython-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-.rst | 2 |
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(). |