diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-15 08:44:13 (GMT) | 
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-15 08:44:13 (GMT) | 
| commit | 72bdefb0868771d360385da55750e8742dab3e05 (patch) | |
| tree | 6e0a13b2ba4538388da07c0ee0f16a094f0b65af /Lib/asyncio/sslproto.py | |
| parent | 042dad7232a021e6c848f1368e75d8b3e5ce0dbe (diff) | |
| download | cpython-72bdefb0868771d360385da55750e8742dab3e05.zip cpython-72bdefb0868771d360385da55750e8742dab3e05.tar.gz cpython-72bdefb0868771d360385da55750e8742dab3e05.tar.bz2  | |
Issue #22560: Fix typo: call -> call_soon
Diffstat (limited to 'Lib/asyncio/sslproto.py')
| -rw-r--r-- | Lib/asyncio/sslproto.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py index 31eab51..c7fb4e7 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.  | 
