From 125e6f8f73b39a1ffd2c66d8ee53897fc4af9127 Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Wed, 1 Jul 2015 18:33:43 -0400 Subject: [PATCH] Update outdated comment. --- tornado/concurrent.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tornado/concurrent.py b/tornado/concurrent.py index 2d6d803d3..f491bd09d 100644 --- a/tornado/concurrent.py +++ b/tornado/concurrent.py @@ -16,11 +16,10 @@ """Utilities for working with threads and ``Futures``. ``Futures`` are a pattern for concurrent programming introduced in -Python 3.2 in the `concurrent.futures` package (this package has also -been backported to older versions of Python and can be installed with -``pip install futures``). Tornado will use `concurrent.futures.Future` if -it is available; otherwise it will use a compatible class defined in this -module. +Python 3.2 in the `concurrent.futures` package. This package defines +a mostly-compatible `Future` class designed for use from coroutines, +as well as some utility functions for interacting with the +`concurrent.futures` package. """ from __future__ import absolute_import, division, print_function, with_statement -- 2.47.3