mirror of
https://github.com/python/cpython.git
synced 2025-08-25 03:04:55 +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
|
@ -191,7 +191,7 @@ class SubprocessProtocol(BaseProtocol):
|
|||
"""Called when subprocess has exited."""
|
||||
|
||||
|
||||
def _feed_data_to_bufferred_proto(proto, data):
|
||||
def _feed_data_to_buffered_proto(proto, data):
|
||||
data_len = len(data)
|
||||
while data_len:
|
||||
buf = proto.get_buffer(data_len)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue