diff options
Diffstat (limited to 'Lib/asyncio/protocols.py')
-rw-r--r-- | Lib/asyncio/protocols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/protocols.py b/Lib/asyncio/protocols.py index 4d47da3..a35ea82 100644 --- a/Lib/asyncio/protocols.py +++ b/Lib/asyncio/protocols.py @@ -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) |