| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 1 | .. currentmodule:: asyncio | 
|  | 2 |  | 
| Victor Stinner | 0f3e6bc | 2014-02-19 23:15:02 +0100 | [diff] [blame] | 3 | .. _asyncio-dev: | 
|  | 4 |  | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 5 | Develop with asyncio | 
|  | 6 | ==================== | 
|  | 7 |  | 
|  | 8 | Asynchronous programming is different than classical "sequential" programming. | 
| Eli Bendersky | 679688e | 2014-01-20 08:13:31 -0800 | [diff] [blame] | 9 | This page lists common traps and explains how to avoid them. | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 10 |  | 
|  | 11 |  | 
| Victor Stinner | 62511fd | 2014-06-23 00:36:11 +0200 | [diff] [blame] | 12 | .. _asyncio-debug-mode: | 
|  | 13 |  | 
|  | 14 | Debug mode of asyncio | 
|  | 15 | --------------------- | 
|  | 16 |  | 
| Andrew Svetlov | 4919907 | 2015-09-24 14:32:39 +0300 | [diff] [blame] | 17 | The implementation of :mod:`asyncio` has been written for performance. | 
|  | 18 | In order to ease the development of asynchronous code, you may wish to | 
|  | 19 | enable *debug mode*. | 
| Victor Stinner | d71dcbb | 2014-08-25 17:04:12 +0200 | [diff] [blame] | 20 |  | 
| Andrew Svetlov | 4919907 | 2015-09-24 14:32:39 +0300 | [diff] [blame] | 21 | To enable all debug checks for an application: | 
| Victor Stinner | d71dcbb | 2014-08-25 17:04:12 +0200 | [diff] [blame] | 22 |  | 
| Victor Stinner | 6a1b004 | 2015-02-04 16:14:33 +0100 | [diff] [blame] | 23 | * Enable the asyncio debug mode globally by setting the environment variable | 
| Victor Stinner | 44862df | 2017-11-20 07:14:07 -0800 | [diff] [blame] | 24 | :envvar:`PYTHONASYNCIODEBUG` to ``1``, using ``-X dev`` command line option | 
|  | 25 | (see the :option:`-X` option), or by calling | 
|  | 26 | :meth:`AbstractEventLoop.set_debug`. | 
| Victor Stinner | 6a1b004 | 2015-02-04 16:14:33 +0100 | [diff] [blame] | 27 | * Set the log level of the :ref:`asyncio logger <asyncio-logger>` to | 
|  | 28 | :py:data:`logging.DEBUG`. For example, call | 
|  | 29 | ``logging.basicConfig(level=logging.DEBUG)`` at startup. | 
|  | 30 | * Configure the :mod:`warnings` module to display :exc:`ResourceWarning` | 
|  | 31 | warnings. For example, use the ``-Wdefault`` command line option of Python to | 
|  | 32 | display them. | 
|  | 33 |  | 
|  | 34 | Examples debug checks: | 
| Victor Stinner | 62511fd | 2014-06-23 00:36:11 +0200 | [diff] [blame] | 35 |  | 
|  | 36 | * Log :ref:`coroutines defined but never "yielded from" | 
|  | 37 | <asyncio-coroutine-not-scheduled>` | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 38 | * :meth:`~AbstractEventLoop.call_soon` and :meth:`~AbstractEventLoop.call_at` methods | 
| Victor Stinner | 62511fd | 2014-06-23 00:36:11 +0200 | [diff] [blame] | 39 | raise an exception if they are called from the wrong thread. | 
|  | 40 | * Log the execution time of the selector | 
|  | 41 | * Log callbacks taking more than 100 ms to be executed. The | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 42 | :attr:`AbstractEventLoop.slow_callback_duration` attribute is the minimum | 
| Victor Stinner | 62511fd | 2014-06-23 00:36:11 +0200 | [diff] [blame] | 43 | duration in seconds of "slow" callbacks. | 
| Victor Stinner | 6a1b004 | 2015-02-04 16:14:33 +0100 | [diff] [blame] | 44 | * :exc:`ResourceWarning` warnings are emitted when transports and event loops | 
|  | 45 | are :ref:`not closed explicitly <asyncio-close-transports>`. | 
| Victor Stinner | 62511fd | 2014-06-23 00:36:11 +0200 | [diff] [blame] | 46 |  | 
| Victor Stinner | 44862df | 2017-11-20 07:14:07 -0800 | [diff] [blame] | 47 | .. versionchanged:: 3.7 | 
|  | 48 |  | 
|  | 49 | The new ``-X dev`` command line option can now also be used to enable | 
|  | 50 | the debug mode. | 
|  | 51 |  | 
| Victor Stinner | 62511fd | 2014-06-23 00:36:11 +0200 | [diff] [blame] | 52 | .. seealso:: | 
|  | 53 |  | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 54 | The :meth:`AbstractEventLoop.set_debug` method and the :ref:`asyncio logger | 
| Victor Stinner | 62511fd | 2014-06-23 00:36:11 +0200 | [diff] [blame] | 55 | <asyncio-logger>`. | 
|  | 56 |  | 
|  | 57 |  | 
| Victor Stinner | 1077dee | 2015-01-30 00:55:58 +0100 | [diff] [blame] | 58 | Cancellation | 
|  | 59 | ------------ | 
|  | 60 |  | 
|  | 61 | Cancellation of tasks is not common in classic programming. In asynchronous | 
| Mike DePalatis | 87c3c5d | 2017-08-03 10:20:42 -0400 | [diff] [blame] | 62 | programming, not only is it something common, but you have to prepare your | 
| Victor Stinner | 1077dee | 2015-01-30 00:55:58 +0100 | [diff] [blame] | 63 | code to handle it. | 
|  | 64 |  | 
|  | 65 | Futures and tasks can be cancelled explicitly with their :meth:`Future.cancel` | 
|  | 66 | method. The :func:`wait_for` function cancels the waited task when the timeout | 
|  | 67 | occurs. There are many other cases where a task can be cancelled indirectly. | 
|  | 68 |  | 
|  | 69 | Don't call :meth:`~Future.set_result` or :meth:`~Future.set_exception` method | 
|  | 70 | of :class:`Future` if the future is cancelled: it would fail with an exception. | 
|  | 71 | For example, write:: | 
|  | 72 |  | 
|  | 73 | if not fut.cancelled(): | 
|  | 74 | fut.set_result('done') | 
|  | 75 |  | 
|  | 76 | Don't schedule directly a call to the :meth:`~Future.set_result` or the | 
|  | 77 | :meth:`~Future.set_exception` method of a future with | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 78 | :meth:`AbstractEventLoop.call_soon`: the future can be cancelled before its method | 
| Victor Stinner | 1077dee | 2015-01-30 00:55:58 +0100 | [diff] [blame] | 79 | is called. | 
|  | 80 |  | 
|  | 81 | If you wait for a future, you should check early if the future was cancelled to | 
|  | 82 | avoid useless operations. Example:: | 
|  | 83 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 84 | async def slow_operation(fut): | 
| Victor Stinner | 1077dee | 2015-01-30 00:55:58 +0100 | [diff] [blame] | 85 | if fut.cancelled(): | 
|  | 86 | return | 
|  | 87 | # ... slow computation ... | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 88 | await fut | 
| Victor Stinner | 1077dee | 2015-01-30 00:55:58 +0100 | [diff] [blame] | 89 | # ... | 
|  | 90 |  | 
|  | 91 | The :func:`shield` function can also be used to ignore cancellation. | 
|  | 92 |  | 
|  | 93 |  | 
| Victor Stinner | 606ab03 | 2014-02-01 03:18:58 +0100 | [diff] [blame] | 94 | .. _asyncio-multithreading: | 
|  | 95 |  | 
|  | 96 | Concurrency and multithreading | 
|  | 97 | ------------------------------ | 
|  | 98 |  | 
|  | 99 | An event loop runs in a thread and executes all callbacks and tasks in the same | 
| Victor Stinner | 86516d9 | 2014-02-18 09:22:00 +0100 | [diff] [blame] | 100 | thread. While a task is running in the event loop, no other task is running in | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 101 | the same thread. But when the task uses ``await``, the task is suspended | 
| Victor Stinner | 5cb84ed | 2014-02-04 18:18:27 +0100 | [diff] [blame] | 102 | and the event loop executes the next task. | 
| Victor Stinner | 606ab03 | 2014-02-01 03:18:58 +0100 | [diff] [blame] | 103 |  | 
| Victor Stinner | 5cb84ed | 2014-02-04 18:18:27 +0100 | [diff] [blame] | 104 | To schedule a callback from a different thread, the | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 105 | :meth:`AbstractEventLoop.call_soon_threadsafe` method should be used. Example:: | 
| Victor Stinner | 5cb84ed | 2014-02-04 18:18:27 +0100 | [diff] [blame] | 106 |  | 
| Guido van Rossum | 601953b | 2015-10-05 16:20:00 -0700 | [diff] [blame] | 107 | loop.call_soon_threadsafe(callback, *args) | 
| Victor Stinner | 606ab03 | 2014-02-01 03:18:58 +0100 | [diff] [blame] | 108 |  | 
| Victor Stinner | 790202d | 2014-02-07 19:03:05 +0100 | [diff] [blame] | 109 | Most asyncio objects are not thread safe. You should only worry if you access | 
|  | 110 | objects outside the event loop. For example, to cancel a future, don't call | 
|  | 111 | directly its :meth:`Future.cancel` method, but:: | 
|  | 112 |  | 
|  | 113 | loop.call_soon_threadsafe(fut.cancel) | 
|  | 114 |  | 
| Victor Stinner | 606ab03 | 2014-02-01 03:18:58 +0100 | [diff] [blame] | 115 | To handle signals and to execute subprocesses, the event loop must be run in | 
|  | 116 | the main thread. | 
|  | 117 |  | 
| Guido van Rossum | 601953b | 2015-10-05 16:20:00 -0700 | [diff] [blame] | 118 | To schedule a coroutine object from a different thread, the | 
|  | 119 | :func:`run_coroutine_threadsafe` function should be used. It returns a | 
|  | 120 | :class:`concurrent.futures.Future` to access the result:: | 
|  | 121 |  | 
|  | 122 | future = asyncio.run_coroutine_threadsafe(coro_func(), loop) | 
|  | 123 | result = future.result(timeout)  # Wait for the result with a timeout | 
|  | 124 |  | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 125 | The :meth:`AbstractEventLoop.run_in_executor` method can be used with a thread pool | 
| Victor Stinner | 606ab03 | 2014-02-01 03:18:58 +0100 | [diff] [blame] | 126 | executor to execute a callback in different thread to not block the thread of | 
|  | 127 | the event loop. | 
|  | 128 |  | 
|  | 129 | .. seealso:: | 
|  | 130 |  | 
| Zachary Ware | 5819cfa | 2015-01-06 00:40:43 -0600 | [diff] [blame] | 131 | The :ref:`Synchronization primitives <asyncio-sync>` section describes ways | 
|  | 132 | to synchronize tasks. | 
| Victor Stinner | 606ab03 | 2014-02-01 03:18:58 +0100 | [diff] [blame] | 133 |  | 
| Victor Stinner | 399c59d | 2015-01-09 01:32:02 +0100 | [diff] [blame] | 134 | The :ref:`Subprocess and threads <asyncio-subprocess-threads>` section lists | 
|  | 135 | asyncio limitations to run subprocesses from different threads. | 
|  | 136 |  | 
|  | 137 |  | 
|  | 138 |  | 
| Victor Stinner | 606ab03 | 2014-02-01 03:18:58 +0100 | [diff] [blame] | 139 |  | 
| Victor Stinner | 45b27ed | 2014-02-01 02:36:43 +0100 | [diff] [blame] | 140 | .. _asyncio-handle-blocking: | 
|  | 141 |  | 
| Eli Bendersky | b73c833 | 2014-02-09 06:07:47 -0800 | [diff] [blame] | 142 | Handle blocking functions correctly | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 143 | ----------------------------------- | 
|  | 144 |  | 
|  | 145 | Blocking functions should not be called directly. For example, if a function | 
|  | 146 | blocks for 1 second, other tasks are delayed by 1 second which can have an | 
|  | 147 | important impact on reactivity. | 
|  | 148 |  | 
|  | 149 | For networking and subprocesses, the :mod:`asyncio` module provides high-level | 
| Victor Stinner | 9592edb | 2014-02-02 15:03:02 +0100 | [diff] [blame] | 150 | APIs like :ref:`protocols <asyncio-protocol>`. | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 151 |  | 
|  | 152 | An executor can be used to run a task in a different thread or even in a | 
|  | 153 | different process, to not block the thread of the event loop. See the | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 154 | :meth:`AbstractEventLoop.run_in_executor` method. | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 155 |  | 
| Victor Stinner | 45b27ed | 2014-02-01 02:36:43 +0100 | [diff] [blame] | 156 | .. seealso:: | 
|  | 157 |  | 
|  | 158 | The :ref:`Delayed calls <asyncio-delayed-calls>` section details how the | 
|  | 159 | event loop handles time. | 
|  | 160 |  | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 161 |  | 
|  | 162 | .. _asyncio-logger: | 
|  | 163 |  | 
| Victor Stinner | 45b27ed | 2014-02-01 02:36:43 +0100 | [diff] [blame] | 164 | Logging | 
|  | 165 | ------- | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 166 |  | 
| Victor Stinner | 45b27ed | 2014-02-01 02:36:43 +0100 | [diff] [blame] | 167 | The :mod:`asyncio` module logs information with the :mod:`logging` module in | 
|  | 168 | the logger ``'asyncio'``. | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 169 |  | 
| Guido van Rossum | ba29a4f | 2016-10-13 13:56:40 -0700 | [diff] [blame] | 170 | The default log level for the :mod:`asyncio` module is :py:data:`logging.INFO`. | 
|  | 171 | For those not wanting such verbosity from :mod:`asyncio` the log level can | 
|  | 172 | be changed.  For example, to change the level to :py:data:`logging.WARNING`: | 
|  | 173 |  | 
|  | 174 | .. code-block:: none | 
|  | 175 |  | 
|  | 176 | logging.getLogger('asyncio').setLevel(logging.WARNING) | 
|  | 177 |  | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 178 |  | 
|  | 179 | .. _asyncio-coroutine-not-scheduled: | 
|  | 180 |  | 
|  | 181 | Detect coroutine objects never scheduled | 
|  | 182 | ---------------------------------------- | 
|  | 183 |  | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 184 | When a coroutine function is called and its result is not passed to | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 185 | :func:`ensure_future` or to the :meth:`AbstractEventLoop.create_task` method, | 
| Yury Selivanov | 04356e1 | 2015-06-30 22:13:22 -0400 | [diff] [blame] | 186 | the execution of the coroutine object will never be scheduled which is | 
|  | 187 | probably a bug.  :ref:`Enable the debug mode of asyncio <asyncio-debug-mode>` | 
|  | 188 | to :ref:`log a warning <asyncio-logger>` to detect it. | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 189 |  | 
|  | 190 | Example with the bug:: | 
|  | 191 |  | 
|  | 192 | import asyncio | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 193 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 194 | async def test(): | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 195 | print("never scheduled") | 
|  | 196 |  | 
|  | 197 | test() | 
|  | 198 |  | 
|  | 199 | Output in debug mode:: | 
|  | 200 |  | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 201 | Coroutine test() at test.py:3 was never yielded from | 
|  | 202 | Coroutine object created at (most recent call last): | 
|  | 203 | File "test.py", line 7, in <module> | 
|  | 204 | test() | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 205 |  | 
| Yury Selivanov | 04356e1 | 2015-06-30 22:13:22 -0400 | [diff] [blame] | 206 | The fix is to call the :func:`ensure_future` function or the | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 207 | :meth:`AbstractEventLoop.create_task` method with the coroutine object. | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 208 |  | 
|  | 209 | .. seealso:: | 
|  | 210 |  | 
|  | 211 | :ref:`Pending task destroyed <asyncio-pending-task-destroyed>`. | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 212 |  | 
|  | 213 |  | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 214 | Detect exceptions never consumed | 
|  | 215 | -------------------------------- | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 216 |  | 
| Ashley Camba | f8802d8 | 2017-11-25 00:39:39 +0100 | [diff] [blame] | 217 | Python usually calls :func:`sys.excepthook` on unhandled exceptions. If | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 218 | :meth:`Future.set_exception` is called, but the exception is never consumed, | 
| Ashley Camba | f8802d8 | 2017-11-25 00:39:39 +0100 | [diff] [blame] | 219 | :func:`sys.excepthook` is not called. Instead, :ref:`a log is emitted | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 220 | <asyncio-logger>` when the future is deleted by the garbage collector, with the | 
|  | 221 | traceback where the exception was raised. | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 222 |  | 
|  | 223 | Example of unhandled exception:: | 
|  | 224 |  | 
|  | 225 | import asyncio | 
|  | 226 |  | 
|  | 227 | @asyncio.coroutine | 
|  | 228 | def bug(): | 
|  | 229 | raise Exception("not consumed") | 
|  | 230 |  | 
|  | 231 | loop = asyncio.get_event_loop() | 
| Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 232 | asyncio.ensure_future(bug()) | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 233 | loop.run_forever() | 
| Victor Stinner | b8064a8 | 2015-02-23 11:41:56 +0100 | [diff] [blame] | 234 | loop.close() | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 235 |  | 
|  | 236 | Output:: | 
|  | 237 |  | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 238 | Task exception was never retrieved | 
| Victor Stinner | ab1c853 | 2014-10-12 21:37:16 +0200 | [diff] [blame] | 239 | future: <Task finished coro=<coro() done, defined at asyncio/coroutines.py:139> exception=Exception('not consumed',)> | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 240 | Traceback (most recent call last): | 
| Victor Stinner | ab1c853 | 2014-10-12 21:37:16 +0200 | [diff] [blame] | 241 | File "asyncio/tasks.py", line 237, in _step | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 242 | result = next(coro) | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 243 | File "asyncio/coroutines.py", line 141, in coro | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 244 | res = func(*args, **kw) | 
| Victor Stinner | ab1c853 | 2014-10-12 21:37:16 +0200 | [diff] [blame] | 245 | File "test.py", line 5, in bug | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 246 | raise Exception("not consumed") | 
|  | 247 | Exception: not consumed | 
|  | 248 |  | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 249 | :ref:`Enable the debug mode of asyncio <asyncio-debug-mode>` to get the | 
| Victor Stinner | ab1c853 | 2014-10-12 21:37:16 +0200 | [diff] [blame] | 250 | traceback where the task was created. Output in debug mode:: | 
|  | 251 |  | 
|  | 252 | Task exception was never retrieved | 
|  | 253 | future: <Task finished coro=<bug() done, defined at test.py:3> exception=Exception('not consumed',) created at test.py:8> | 
|  | 254 | source_traceback: Object created at (most recent call last): | 
|  | 255 | File "test.py", line 8, in <module> | 
| Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 256 | asyncio.ensure_future(bug()) | 
| Victor Stinner | ab1c853 | 2014-10-12 21:37:16 +0200 | [diff] [blame] | 257 | Traceback (most recent call last): | 
|  | 258 | File "asyncio/tasks.py", line 237, in _step | 
|  | 259 | result = next(coro) | 
|  | 260 | File "asyncio/coroutines.py", line 79, in __next__ | 
|  | 261 | return next(self.gen) | 
|  | 262 | File "asyncio/coroutines.py", line 141, in coro | 
|  | 263 | res = func(*args, **kw) | 
|  | 264 | File "test.py", line 5, in bug | 
|  | 265 | raise Exception("not consumed") | 
|  | 266 | Exception: not consumed | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 267 |  | 
| Zachary Ware | 5819cfa | 2015-01-06 00:40:43 -0600 | [diff] [blame] | 268 | There are different options to fix this issue. The first option is to chain the | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 269 | coroutine in another coroutine and use classic try/except:: | 
|  | 270 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 271 | async def handle_exception(): | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 272 | try: | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 273 | await bug() | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 274 | except Exception: | 
|  | 275 | print("exception consumed") | 
|  | 276 |  | 
|  | 277 | loop = asyncio.get_event_loop() | 
| Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 278 | asyncio.ensure_future(handle_exception()) | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 279 | loop.run_forever() | 
| Victor Stinner | b8064a8 | 2015-02-23 11:41:56 +0100 | [diff] [blame] | 280 | loop.close() | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 281 |  | 
| Guido van Rossum | f68afd8 | 2016-08-08 09:41:21 -0700 | [diff] [blame] | 282 | Another option is to use the :meth:`AbstractEventLoop.run_until_complete` | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 283 | function:: | 
|  | 284 |  | 
| Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 285 | task = asyncio.ensure_future(bug()) | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 286 | try: | 
|  | 287 | loop.run_until_complete(task) | 
|  | 288 | except Exception: | 
|  | 289 | print("exception consumed") | 
|  | 290 |  | 
| Zachary Ware | 5819cfa | 2015-01-06 00:40:43 -0600 | [diff] [blame] | 291 | .. seealso:: | 
|  | 292 |  | 
|  | 293 | The :meth:`Future.exception` method. | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 294 |  | 
|  | 295 |  | 
| Zachary Ware | 5819cfa | 2015-01-06 00:40:43 -0600 | [diff] [blame] | 296 | Chain coroutines correctly | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 297 | -------------------------- | 
|  | 298 |  | 
|  | 299 | When a coroutine function calls other coroutine functions and tasks, they | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 300 | should be chained explicitly with ``await``. Otherwise, the execution is | 
| Eli Bendersky | 679688e | 2014-01-20 08:13:31 -0800 | [diff] [blame] | 301 | not guaranteed to be sequential. | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 302 |  | 
| Eli Bendersky | 679688e | 2014-01-20 08:13:31 -0800 | [diff] [blame] | 303 | Example with different bugs using :func:`asyncio.sleep` to simulate slow | 
|  | 304 | operations:: | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 305 |  | 
|  | 306 | import asyncio | 
|  | 307 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 308 | async def create(): | 
|  | 309 | await asyncio.sleep(3.0) | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 310 | print("(1) create file") | 
|  | 311 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 312 | async def write(): | 
|  | 313 | await asyncio.sleep(1.0) | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 314 | print("(2) write into file") | 
|  | 315 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 316 | async def close(): | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 317 | print("(3) close file") | 
|  | 318 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 319 | async def test(): | 
| Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 320 | asyncio.ensure_future(create()) | 
|  | 321 | asyncio.ensure_future(write()) | 
|  | 322 | asyncio.ensure_future(close()) | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 323 | await asyncio.sleep(2.0) | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 324 | loop.stop() | 
|  | 325 |  | 
|  | 326 | loop = asyncio.get_event_loop() | 
| Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 327 | asyncio.ensure_future(test()) | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 328 | loop.run_forever() | 
|  | 329 | print("Pending tasks at exit: %s" % asyncio.Task.all_tasks(loop)) | 
| Victor Stinner | f40c663 | 2014-01-28 23:32:40 +0100 | [diff] [blame] | 330 | loop.close() | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 331 |  | 
| Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 332 | Expected output: | 
|  | 333 |  | 
|  | 334 | .. code-block:: none | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 335 |  | 
|  | 336 | (1) create file | 
|  | 337 | (2) write into file | 
|  | 338 | (3) close file | 
|  | 339 | Pending tasks at exit: set() | 
|  | 340 |  | 
| Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 341 | Actual output: | 
|  | 342 |  | 
|  | 343 | .. code-block:: none | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 344 |  | 
|  | 345 | (3) close file | 
|  | 346 | (2) write into file | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 347 | Pending tasks at exit: {<Task pending create() at test.py:7 wait_for=<Future pending cb=[Task._wakeup()]>>} | 
|  | 348 | Task was destroyed but it is pending! | 
|  | 349 | task: <Task pending create() done at test.py:5 wait_for=<Future pending cb=[Task._wakeup()]>> | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 350 |  | 
|  | 351 | The loop stopped before the ``create()`` finished, ``close()`` has been called | 
|  | 352 | before ``write()``, whereas coroutine functions were called in this order: | 
|  | 353 | ``create()``, ``write()``, ``close()``. | 
|  | 354 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 355 | To fix the example, tasks must be marked with ``await``:: | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 356 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 357 | async def test(): | 
|  | 358 | await asyncio.ensure_future(create()) | 
|  | 359 | await asyncio.ensure_future(write()) | 
|  | 360 | await asyncio.ensure_future(close()) | 
|  | 361 | await asyncio.sleep(2.0) | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 362 | loop.stop() | 
|  | 363 |  | 
| Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 364 | Or without ``asyncio.ensure_future()``:: | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 365 |  | 
| Andrew Svetlov | 8874342 | 2017-12-11 17:35:49 +0200 | [diff] [blame] | 366 | async def test(): | 
|  | 367 | await create() | 
|  | 368 | await write() | 
|  | 369 | await close() | 
|  | 370 | await asyncio.sleep(2.0) | 
| Victor Stinner | db39a0d | 2014-01-16 18:58:01 +0100 | [diff] [blame] | 371 | loop.stop() | 
|  | 372 |  | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 373 |  | 
|  | 374 | .. _asyncio-pending-task-destroyed: | 
|  | 375 |  | 
|  | 376 | Pending task destroyed | 
|  | 377 | ---------------------- | 
|  | 378 |  | 
|  | 379 | If a pending task is destroyed, the execution of its wrapped :ref:`coroutine | 
|  | 380 | <coroutine>` did not complete. It is probably a bug and so a warning is logged. | 
|  | 381 |  | 
| Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 382 | Example of log: | 
|  | 383 |  | 
|  | 384 | .. code-block:: none | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 385 |  | 
|  | 386 | Task was destroyed but it is pending! | 
| Victor Stinner | ab1c853 | 2014-10-12 21:37:16 +0200 | [diff] [blame] | 387 | task: <Task pending coro=<kill_me() done, defined at test.py:5> wait_for=<Future pending cb=[Task._wakeup()]>> | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 388 |  | 
|  | 389 | :ref:`Enable the debug mode of asyncio <asyncio-debug-mode>` to get the | 
| Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 390 | traceback where the task was created. Example of log in debug mode: | 
|  | 391 |  | 
|  | 392 | .. code-block:: none | 
| Victor Stinner | ab1c853 | 2014-10-12 21:37:16 +0200 | [diff] [blame] | 393 |  | 
|  | 394 | Task was destroyed but it is pending! | 
|  | 395 | source_traceback: Object created at (most recent call last): | 
|  | 396 | File "test.py", line 15, in <module> | 
| Yury Selivanov | d7e19bb | 2015-05-11 16:33:41 -0400 | [diff] [blame] | 397 | task = asyncio.ensure_future(coro, loop=loop) | 
| Victor Stinner | ab1c853 | 2014-10-12 21:37:16 +0200 | [diff] [blame] | 398 | task: <Task pending coro=<kill_me() done, defined at test.py:5> wait_for=<Future pending cb=[Task._wakeup()] created at test.py:7> created at test.py:15> | 
|  | 399 |  | 
| Victor Stinner | 530ef2f | 2014-07-08 12:39:10 +0200 | [diff] [blame] | 400 |  | 
|  | 401 | .. seealso:: | 
|  | 402 |  | 
|  | 403 | :ref:`Detect coroutine objects never scheduled <asyncio-coroutine-not-scheduled>`. | 
|  | 404 |  | 
| Victor Stinner | 6a1b004 | 2015-02-04 16:14:33 +0100 | [diff] [blame] | 405 | .. _asyncio-close-transports: | 
| Victor Stinner | 188f2c0 | 2015-01-30 01:35:14 +0100 | [diff] [blame] | 406 |  | 
| Victor Stinner | 6a1b004 | 2015-02-04 16:14:33 +0100 | [diff] [blame] | 407 | Close transports and event loops | 
|  | 408 | -------------------------------- | 
| Victor Stinner | 188f2c0 | 2015-01-30 01:35:14 +0100 | [diff] [blame] | 409 |  | 
|  | 410 | When a transport is no more needed, call its ``close()`` method to release | 
| Victor Stinner | 6a1b004 | 2015-02-04 16:14:33 +0100 | [diff] [blame] | 411 | resources. Event loops must also be closed explicitly. | 
| Victor Stinner | 188f2c0 | 2015-01-30 01:35:14 +0100 | [diff] [blame] | 412 |  | 
| Victor Stinner | 6a1b004 | 2015-02-04 16:14:33 +0100 | [diff] [blame] | 413 | If a transport or an event loop is not closed explicitly, a | 
|  | 414 | :exc:`ResourceWarning` warning will be emitted in its destructor. By default, | 
|  | 415 | :exc:`ResourceWarning` warnings are ignored. The :ref:`Debug mode of asyncio | 
|  | 416 | <asyncio-debug-mode>` section explains how to display them. |