summaryrefslogtreecommitdiff
path: root/Lib/asyncio/sslproto.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-01-15 09:44:13 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-01-15 09:44:13 +0100
commit9c4ca7c62045dc4321d670f9b43905447a83ebd6 (patch)
tree20b2757626a053fba7eb18b1e7b50f043ba3e8ed /Lib/asyncio/sslproto.py
parentec63dd6a97dc3a01e1485021d3db3befec7b0b81 (diff)
downloadcpython-9c4ca7c62045dc4321d670f9b43905447a83ebd6.tar.gz
Issue #22560: Fix typo: call -> call_soon
Diffstat (limited to 'Lib/asyncio/sslproto.py')
-rw-r--r--Lib/asyncio/sslproto.py2
1 files changed, 1 insertions, 1 deletions
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.