]> git.ipfire.org Git - thirdparty/tornado.git/commit
Convert print to a function and add future imports.
authorBen Darnell <ben@bendarnell.com>
Mon, 14 Jan 2013 00:35:04 +0000 (19:35 -0500)
committerBen Darnell <ben@bendarnell.com>
Mon, 14 Jan 2013 00:35:04 +0000 (19:35 -0500)
commit65df55da409acd8ec68d95a17d8bedf96d1f2e0f
tree3ff5d01ac8512ed4a447ccb1d6043c6254d4c7ef
parent0d693ee09dc6ea91f0e7d3ebad37e11e4cc5be89
Convert print to a function and add future imports.

Automated with 2to3 and custom fixer.
2to3 -f print tornado > print.diff
2to3 -f print -d tornado > print_doctest.diff
maint/scripts/run_fixers.py -f future_import tornado > future.diff
cd tornado
git apply ../{print,print_doctest,future}.diff
62 files changed:
maint/scripts/custom_fixers/fix_future_imports.py
tornado/__init__.py
tornado/auth.py
tornado/autoreload.py
tornado/concurrent.py
tornado/curl_httpclient.py
tornado/escape.py
tornado/gen.py
tornado/httpclient.py
tornado/httpserver.py
tornado/httputil.py
tornado/ioloop.py
tornado/iostream.py
tornado/locale.py
tornado/log.py
tornado/netutil.py
tornado/options.py
tornado/platform/auto.py
tornado/platform/common.py
tornado/platform/epoll.py
tornado/platform/interface.py
tornado/platform/kqueue.py
tornado/platform/posix.py
tornado/platform/select.py
tornado/platform/twisted.py
tornado/platform/windows.py
tornado/process.py
tornado/simple_httpclient.py
tornado/stack_context.py
tornado/template.py
tornado/test/auth_test.py
tornado/test/concurrent_test.py
tornado/test/curl_httpclient_test.py
tornado/test/escape_test.py
tornado/test/gen_test.py
tornado/test/gettext_translations/extract_me.py
tornado/test/httpclient_test.py
tornado/test/httpserver_test.py
tornado/test/httputil_test.py
tornado/test/import_test.py
tornado/test/ioloop_test.py
tornado/test/iostream_test.py
tornado/test/locale_test.py
tornado/test/log_test.py
tornado/test/netutil_test.py
tornado/test/options_test.py
tornado/test/process_test.py
tornado/test/runtests.py
tornado/test/simple_httpclient_test.py
tornado/test/stack_context_test.py
tornado/test/template_test.py
tornado/test/testing_test.py
tornado/test/twisted_test.py
tornado/test/util.py
tornado/test/util_test.py
tornado/test/web_test.py
tornado/test/wsgi_test.py
tornado/testing.py
tornado/util.py
tornado/web.py
tornado/websocket.py
tornado/wsgi.py