From: Victor Stinner Date: Thu, 15 Jan 2015 08:44:13 +0000 (+0100) Subject: Issue #22560: Fix typo: call -> call_soon X-Git-Tag: v3.4.3rc1~132 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=72bdefb0868771d360385da55750e8742dab3e05;p=python Issue #22560: Fix typo: call -> call_soon --- diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py index 31eab51ca1..c7fb4e7c60 100644 --- a/Lib/asyncio/sslproto.py +++ b/Lib/asyncio/sslproto.py @@ -577,7 +577,7 @@ class SSLProtocol(protocols.Protocol): # _on_handshake_complete() can be called indirectly from # _process_write_backlog(), and _process_write_backlog() is not # reentrant. - self._loop.call(self._process_write_backlog) + self._loop.call_soon(self._process_write_backlog) def _process_write_backlog(self): # Try to make progress on the write backlog.