diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-06-08 10:32:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-08 10:32:06 +0200 |
commit | ff6c07729211fb98431a2793e074d07a21e0650a (patch) | |
tree | 7883e763d7ecf72e0b98e887061ee3bb2bb9a9c7 /Lib/asyncio/sslproto.py | |
parent | c45fc7673e23f911639d10d3771ffef7be870c7a (diff) | |
download | cpython-git-ff6c07729211fb98431a2793e074d07a21e0650a.tar.gz |
bpo-33694: Fix typo in helper function name (GH-7522)
_feed_data_to_bufferred_proto() renamed to
_feed_data_to_buffered_proto() ("bufferred" => "buffered").
Typo spotted by Nathaniel J. Smith.
Diffstat (limited to 'Lib/asyncio/sslproto.py')
-rw-r--r-- | Lib/asyncio/sslproto.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py index 5578c6f818..12fdb0d1c5 100644 --- a/Lib/asyncio/sslproto.py +++ b/Lib/asyncio/sslproto.py @@ -535,7 +535,7 @@ class SSLProtocol(protocols.Protocol): if chunk: try: if self._app_protocol_is_buffer: - protocols._feed_data_to_bufferred_proto( + protocols._feed_data_to_buffered_proto( self._app_protocol, chunk) else: self._app_protocol.data_received(chunk) |