From: Ben Darnell Date: Wed, 1 Jul 2015 22:33:43 +0000 (-0400) Subject: Update outdated comment. X-Git-Tag: v4.3.0b1~92 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=125e6f8f73b39a1ffd2c66d8ee53897fc4af9127;p=thirdparty%2Ftornado.git Update outdated comment. --- 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