2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								..  currentmodule ::  asyncio
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-19 23:15:02 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  _asyncio-dev: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								Develop with asyncio
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								====================
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Asynchronous programming is different than classical "sequential" programming.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-20 08:13:31 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								This page lists common traps and explains how to avoid them.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 00:36:11 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  _asyncio-debug-mode: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Debug mode of asyncio
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								---------------------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-02-04 16:14:33 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								The implementation of :mod: `asyncio`  module has been written for performances.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								To development with asyncio, it's required to enable the debug checks to ease
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								the development of asynchronous code.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-08-25 17:04:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-02-04 16:14:33 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Setup an application to enable all debug checks:
 
							 
						 
					
						
							
								
									
										
										
										
											2014-08-25 17:04:12 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-02-04 16:14:33 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								*  Enable the asyncio debug mode globally by setting the environment variable
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  :envvar: `PYTHONASYNCIODEBUG`  to `` 1 `` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  Set the log level of the :ref: `asyncio logger <asyncio-logger>`  to
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  :py:data: `logging.DEBUG` . For example, call
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  `` logging.basicConfig(level=logging.DEBUG) ``  at startup.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  Configure the :mod: `warnings`  module to display :exc: `ResourceWarning` 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  warnings. For example, use the `` -Wdefault ``  command line option of Python to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  display them.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Examples debug checks:
 
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 00:36:11 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  Log :ref:`coroutines defined but never "yielded from"
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  <asyncio-coroutine-not-scheduled>`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  :meth: `~BaseEventLoop.call_soon`  and :meth: `~BaseEventLoop.call_at`  methods
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  raise an exception if they are called from the wrong thread.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  Log the execution time of the selector
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  Log callbacks taking more than 100 ms to be executed. The
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  :attr: `BaseEventLoop.slow_callback_duration`  attribute is the minimum
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  duration in seconds of "slow" callbacks.
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-04 16:14:33 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								*  :exc: `ResourceWarning`  warnings are emitted when transports and event loops
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								  are :ref: `not closed explicitly <asyncio-close-transports>` .
 
							 
						 
					
						
							
								
									
										
										
										
											2014-06-23 00:36:11 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  seealso :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   The :meth: `BaseEventLoop.set_debug`  method and the :ref:`asyncio logger
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   <asyncio-logger>`.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-01-30 00:55:58 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Cancellation
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								------------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Cancellation of tasks is not common in classic programming. In asynchronous
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								programming, not only it is something common, but you have to prepare your
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								code to handle it.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Futures and tasks can be cancelled explicitly with their :meth: `Future.cancel` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								method. The :func: `wait_for`  function cancels the waited task when the timeout
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								occurs. There are many other cases where a task can be cancelled indirectly.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Don't call :meth: `~Future.set_result`  or :meth: `~Future.set_exception`  method
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								of :class: `Future`  if the future is cancelled: it would fail with an exception.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								For example, write::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    if not fut.cancelled():
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        fut.set_result('done')
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Don't schedule directly a call to the :meth: `~Future.set_result`  or the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:meth: `~Future.set_exception`  method of a future with
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:meth:`BaseEventLoop.call_soon`:  the future can be cancelled before its method 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								is called.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								If you wait for a future, you should check early if the future was cancelled to
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								avoid useless operations. Example::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def slow_operation(fut):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        if fut.cancelled():
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								            return
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        # ... slow computation ...
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        yield from fut
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        # ...
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								The :func: `shield`  function can also be used to ignore cancellation.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 03:18:58 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  _asyncio-multithreading: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Concurrency and multithreading
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								------------------------------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								An event loop runs in a thread and executes all callbacks and tasks in the same
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-18 09:22:00 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								thread. While a task is running in the event loop, no other task is running in
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-04 18:18:27 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								the same thread. But when the task uses `` yield from `` , the task is suspended
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								and the event loop executes the next task.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 03:18:58 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-04 18:18:27 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								To schedule a callback from a different thread, the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:meth: `BaseEventLoop.call_soon_threadsafe`  method should be used. Example to
  
						 
					
						
							
								
									
										
										
										
											2014-02-04 13:49:34 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								schedule a coroutine from a different thread::
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-04 18:18:27 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    loop.call_soon_threadsafe(asyncio.async, coro_func())
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 03:18:58 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-07 19:03:05 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Most asyncio objects are not thread safe. You should only worry if you access
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								objects outside the event loop. For example, to cancel a future, don't call
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								directly its :meth: `Future.cancel`  method, but::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    loop.call_soon_threadsafe(fut.cancel)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 03:18:58 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								To handle signals and to execute subprocesses, the event loop must be run in
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								the main thread.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								The :meth: `BaseEventLoop.run_in_executor`  method can be used with a thread pool
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								executor to execute a callback in different thread to not block the thread of
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								the event loop.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  seealso :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-01-06 00:40:43 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   The :ref: `Synchronization primitives <asyncio-sync>`  section describes ways
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   to synchronize tasks.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 03:18:58 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-01-09 01:32:02 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   The :ref: `Subprocess and threads <asyncio-subprocess-threads>`  section lists
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   asyncio limitations to run subprocesses from different threads.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 03:18:58 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 02:36:43 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  _asyncio-handle-blocking: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-09 06:07:47 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Handle blocking functions correctly
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								-----------------------------------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Blocking functions should not be called directly. For example, if a function
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								blocks for 1 second, other tasks are delayed by 1 second which can have an
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								important impact on reactivity.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								For networking and subprocesses, the :mod: `asyncio`  module provides high-level
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-02 15:03:02 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								APIs like :ref: `protocols <asyncio-protocol>` .
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								An executor can be used to run a task in a different thread or even in a
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								different process, to not block the thread of the event loop. See the
 
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 03:18:58 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:meth: `BaseEventLoop.run_in_executor`  method.
  
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 02:36:43 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  seealso :: 
  
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 02:36:43 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								   The :ref: `Delayed calls <asyncio-delayed-calls>`  section details how the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   event loop handles time.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 02:36:43 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  _asyncio-logger: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Logging
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								-------
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-02-01 02:36:43 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								The :mod: `asyncio`  module logs information with the :mod: `logging`  module in
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								the logger `` 'asyncio' `` .
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  _asyncio-coroutine-not-scheduled: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Detect coroutine objects never scheduled
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								----------------------------------------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								When a coroutine function is called and its result is not passed to
 
							 
						 
					
						
							
								
									
										
										
										
											2015-01-06 00:40:43 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `async`  or to the :meth: `BaseEventLoop.create_task`  method, the execution
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								of the coroutine object will never be scheduled which is probably a bug.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:ref: `Enable the debug mode of asyncio <asyncio-debug-mode>`  to :ref:`log a
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								warning <asyncio-logger>` to detect it.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Example with the bug::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    import asyncio
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @asyncio.coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def test():
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        print("never scheduled")
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    test()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Output in debug mode::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    Coroutine test() at test.py:3 was never yielded from
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    Coroutine object created at (most recent call last):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      File "test.py", line 7, in <module>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        test()
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								The fix is to call the :func: `async`  function or the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:meth: `BaseEventLoop.create_task`  method with the coroutine object.
  
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  seealso :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :ref: `Pending task destroyed <asyncio-pending-task-destroyed>` .
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Detect exceptions never consumed
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								--------------------------------
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Python usually calls :func: `sys.displayhook`  on unhandled exceptions. If
 
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:meth: `Future.set_exception`  is called, but the exception is never consumed,
  
						 
					
						
							
								
									
										
										
										
											2015-01-06 00:40:43 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								:func: `sys.displayhook`  is not called. Instead, :ref:`a log is emitted
  
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								<asyncio-logger> ` when the future is deleted by the garbage collector, with the
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								traceback where the exception was raised.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Example of unhandled exception::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    import asyncio
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @asyncio.coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def bug():
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        raise Exception("not consumed")
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    loop = asyncio.get_event_loop()
 
							 
						 
					
						
							
								
									
										
										
										
											2015-05-11 16:33:41 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    asyncio.ensure_future(bug())
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								    loop.run_forever()
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-23 11:41:56 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    loop.close()
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Output::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    Task exception was never retrieved
 
							 
						 
					
						
							
								
									
										
										
										
											2014-10-12 21:37:16 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    future: <Task finished coro=<coro() done, defined at asyncio/coroutines.py:139> exception=Exception('not consumed',)>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    Traceback (most recent call last):
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      File "asyncio/tasks.py", line 237, in _step
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        result = next(coro)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      File "asyncio/coroutines.py", line 141, in coro
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        res = func(*args, * *kw)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      File "test.py", line 5, in bug
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        raise Exception("not consumed")
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    Exception: not consumed
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:ref: `Enable the debug mode of asyncio <asyncio-debug-mode>`  to get the
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								traceback where the task was created. Output in debug mode::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    Task exception was never retrieved
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    future: <Task finished coro=<bug() done, defined at test.py:3> exception=Exception('not consumed',) created at test.py:8>
 
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    source_traceback: Object created at (most recent call last):
 
							 
						 
					
						
							
								
									
										
										
										
											2014-10-12 21:37:16 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      File "test.py", line 8, in <module>
 
							 
						 
					
						
							
								
									
										
										
										
											2015-05-11 16:33:41 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        asyncio.ensure_future(bug())
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								    Traceback (most recent call last):
 
							 
						 
					
						
							
								
									
										
										
										
											2014-10-12 21:37:16 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      File "asyncio/tasks.py", line 237, in _step
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								        result = next(coro)
 
							 
						 
					
						
							
								
									
										
										
										
											2014-10-12 21:37:16 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      File "asyncio/coroutines.py", line 79, in __next__
 
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        return next(self.gen)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								      File "asyncio/coroutines.py", line 141, in coro
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								        res = func(*args, * *kw)
 
							 
						 
					
						
							
								
									
										
										
										
											2014-10-12 21:37:16 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      File "test.py", line 5, in bug
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								        raise Exception("not consumed")
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    Exception: not consumed
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-01-06 00:40:43 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								There are different options to fix this issue. The first option is to chain the
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								coroutine in another coroutine and use classic try/except::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @asyncio.coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def handle_exception():
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        try:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								            yield from bug()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        except Exception:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								            print("exception consumed")
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    loop = asyncio.get_event_loop()
 
							 
						 
					
						
							
								
									
										
										
										
											2015-05-11 16:33:41 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    asyncio.ensure_future(handle_exception())
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								    loop.run_forever()
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-23 11:41:56 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    loop.close()
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Another option is to use the :meth: `BaseEventLoop.run_until_complete` 
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								function::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-05-11 16:33:41 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    task = asyncio.ensure_future(bug())
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								    try:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        loop.run_until_complete(task)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    except Exception:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        print("exception consumed")
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-01-06 00:40:43 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  seealso :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   The :meth: `Future.exception`  method.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-01-06 00:40:43 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Chain coroutines correctly
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								--------------------------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								When a coroutine function calls other coroutine functions and tasks, they
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-20 08:13:31 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								should be chained explicitly with `` yield from `` . Otherwise, the execution is
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								not guaranteed to be sequential.
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-01-20 08:13:31 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Example with different bugs using :func: `asyncio.sleep`  to simulate slow
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								operations::
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    import asyncio
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @asyncio.coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def create():
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        yield from asyncio.sleep(3.0)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        print("(1) create file")
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @asyncio.coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def write():
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        yield from asyncio.sleep(1.0)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        print("(2) write into file")
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @asyncio.coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def close():
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        print("(3) close file")
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @asyncio.coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def test():
 
							 
						 
					
						
							
								
									
										
										
										
											2015-05-11 16:33:41 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        asyncio.ensure_future(create())
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        asyncio.ensure_future(write())
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        asyncio.ensure_future(close())
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								        yield from asyncio.sleep(2.0)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        loop.stop()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    loop = asyncio.get_event_loop()
 
							 
						 
					
						
							
								
									
										
										
										
											2015-05-11 16:33:41 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    asyncio.ensure_future(test())
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								    loop.run_forever()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    print("Pending tasks at exit: %s" % asyncio.Task.all_tasks(loop))
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-28 23:32:40 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    loop.close()
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Expected output::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    (1)  create file
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    (2)  write into file
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    (3)  close file
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    Pending tasks at exit: set()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Actual output::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    (3)  close file
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    (2)  write into file
 
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    Pending tasks at exit: {<Task pending create() at test.py:7 wait_for=<Future pending cb=[Task._wakeup()]>>}
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    Task was destroyed but it is pending!
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    task: <Task pending create() done at test.py:5 wait_for=<Future pending cb=[Task._wakeup()]>>
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								The loop stopped before the `` create() ``  finished, `` close() ``  has been called
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								before `` write() `` , whereas coroutine functions were called in this order:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								`` create() `` , `` write() `` , `` close() `` .
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								To fix the example, tasks must be marked with `` yield from `` ::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @asyncio.coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def test():
 
							 
						 
					
						
							
								
									
										
										
										
											2015-05-11 16:33:41 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        yield from asyncio.ensure_future(create())
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        yield from asyncio.ensure_future(write())
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        yield from asyncio.ensure_future(close())
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								        yield from asyncio.sleep(2.0)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        loop.stop()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-05-11 16:33:41 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Or without `` asyncio.ensure_future() `` ::
 
							 
						 
					
						
							
								
									
										
										
										
											2014-01-16 18:58:01 +01:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    @asyncio.coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    def test():
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        yield from create()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        yield from write()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        yield from close()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        yield from asyncio.sleep(2.0)
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								        loop.stop()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  _asyncio-pending-task-destroyed: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Pending task destroyed
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								----------------------
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								If a pending task is destroyed, the execution of its wrapped :ref:`coroutine
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								<coroutine> ` did not complete. It is probably a bug and so a warning is logged.
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								Example of log::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-10-12 21:37:16 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    Task was destroyed but it is pending!
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    task: <Task pending coro=<kill_me() done, defined at test.py:5> wait_for=<Future pending cb=[Task._wakeup()]>>
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:ref: `Enable the debug mode of asyncio <asyncio-debug-mode>`  to get the
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								traceback where the task was created. Example of log in debug mode::
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    Task was destroyed but it is pending!
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    source_traceback: Object created at (most recent call last):
 
							 
						 
					
						
							
								
									
										
										
										
											2014-10-12 21:37:16 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								      File "test.py", line 15, in <module>
 
							 
						 
					
						
							
								
									
										
										
										
											2015-05-11 16:33:41 -04:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								        task = asyncio.ensure_future(coro, loop=loop)
 
							 
						 
					
						
							
								
									
										
										
										
											2014-10-12 21:37:16 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								    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>
 
							 
						 
					
						
							
								
									
										
										
										
											2014-07-08 12:39:10 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								..  seealso :: 
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								   :ref: `Detect coroutine objects never scheduled <asyncio-coroutine-not-scheduled>` .
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-02-04 16:14:33 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								..  _asyncio-close-transports: 
  
						 
					
						
							
								
									
										
										
										
											2015-01-30 01:35:14 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-02-04 16:14:33 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Close transports and event loops
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								--------------------------------
 
							 
						 
					
						
							
								
									
										
										
										
											2015-01-30 01:35:14 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								When a transport is no more needed, call its `` close() ``  method to release
 
							 
						 
					
						
							
								
									
										
										
										
											2015-02-04 16:14:33 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								resources. Event loops must also be closed explicitly.
 
							 
						 
					
						
							
								
									
										
										
										
											2015-01-30 01:35:14 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-02-04 16:14:33 +01:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								If a transport or an event loop is not closed explicitly, a
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:exc: `ResourceWarning`  warning will be emitted in its destructor. By default,
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								:exc: `ResourceWarning`  warnings are ignored. The :ref:`Debug mode of asyncio
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								<asyncio-debug-mode> ` section explains how to display them.