]> granicus.if.org Git - python/commitdiff
Issue #22560: Fix typo: call -> call_soon
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 15 Jan 2015 08:44:13 +0000 (09:44 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 15 Jan 2015 08:44:13 +0000 (09:44 +0100)
Lib/asyncio/sslproto.py

index 31eab51ca1778ee4c82c58f1c4419360a40263a9..c7fb4e7c60fa667d97167a6b117ca1bd07473241 100644 (file)
@@ -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.