mirror of
https://github.com/python/cpython.git
synced 2025-10-06 15:11:58 +00:00
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.
This commit is contained in:
parent
c45fc7673e
commit
ff6c077292
4 changed files with 9 additions and 9 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue