mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #22560: Fix typo: call -> call_soon
This commit is contained in:
parent
042dad7232
commit
72bdefb086
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue