From: Ben Darnell Date: Fri, 30 Jul 2010 02:01:13 +0000 (-0700) Subject: Add __future__ import for python2.5 compatibility X-Git-Tag: v1.1.0~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b260c92d17eba13403ec4a40edba8aa12055bc7a;p=thirdparty%2Ftornado.git Add __future__ import for python2.5 compatibility --- diff --git a/tornado/testing.py b/tornado/testing.py index f25b92fa8..6b3079359 100644 --- a/tornado/testing.py +++ b/tornado/testing.py @@ -15,6 +15,8 @@ inheritance. See the docstrings for each class/function below for more information. """ +from __future__ import with_statement + from cStringIO import StringIO from tornado.httpclient import AsyncHTTPClient from tornado.httpserver import HTTPServer