@@ -243,9 +243,9 @@ Scheduling callbacks
243243 See the :ref: `concurrency and multithreading <asyncio-multithreading >`
244244 section of the documentation.
245245
246- .. versionchanged :: 3.7
247- The *context * keyword-only parameter was added. See :pep: `567 `
248- for more details.
246+ .. versionchanged :: 3.7
247+ The *context * keyword-only parameter was added. See :pep: `567 `
248+ for more details.
249249
250250.. _asyncio-pass-keywords :
251251
@@ -661,6 +661,8 @@ Opening network connections
661661Creating network servers
662662^^^^^^^^^^^^^^^^^^^^^^^^
663663
664+ .. _loop_create_server :
665+
664666.. coroutinemethod :: loop.create_server(protocol_factory, \
665667 host=None, port=None, *, \
666668 family=socket.AF_UNSPEC, \
@@ -1191,6 +1193,8 @@ Working with pipes
11911193Unix signals
11921194^^^^^^^^^^^^
11931195
1196+ .. _loop_add_signal_handler :
1197+
11941198.. method :: loop.add_signal_handler(signum, callback, *args)
11951199
11961200 Set *callback * as the handler for the *signum * signal.
@@ -1391,6 +1395,14 @@ Enabling debug mode
13911395 The new :ref: `Python Development Mode <devmode >` can now also be used
13921396 to enable the debug mode.
13931397
1398+ .. attribute :: loop.slow_callback_duration
1399+
1400+ This attribute can be used to set the
1401+ minimum execution duration in seconds that is considered "slow".
1402+ When debug mode is enabled, "slow" callbacks are logged.
1403+
1404+ Default value is 100 milliseconds.
1405+
13941406.. seealso ::
13951407
13961408 The :ref: `debug mode of asyncio <asyncio-debug-mode >`.
@@ -1411,6 +1423,8 @@ async/await code consider using the high-level
14111423 :ref: `Subprocess Support on Windows <asyncio-windows-subprocess >` for
14121424 details.
14131425
1426+ .. _loop_subprocess_exec :
1427+
14141428.. coroutinemethod :: loop.subprocess_exec(protocol_factory, *args, \
14151429 stdin=subprocess.PIPE, stdout=subprocess.PIPE, \
14161430 stderr=subprocess.PIPE, **kwargs)
0 commit comments