What’s new in Tornado 4.0¶
July 15, 2014¶
Highlights¶
- The
tornado.web.stream_request_bodydecorator allows large files to be uploaded with limited memory usage. - Coroutines are now faster and are used extensively throughout Tornado itself.
More methods now return
Futures, including mostIOStreammethods andRequestHandler.flush. - Many user-overridden methods are now allowed to return a
Futurefor flow control. - HTTP-related code is now shared between the
tornado.httpserver,tornado.simple_httpclientandtornado.wsgimodules, making support for features such as chunked and gzip encoding more consistent.HTTPServernow uses new delegate interfaces defined intornado.httputilin addition to its old single-callback interface. - New module
tornado.tcpclientcreates TCP connections with non-blocking DNS, SSL handshaking, and support for IPv6.
Backwards-compatibility notes¶
tornado.concurrent.Futureis no longer thread-safe; useconcurrent.futures.Futurewhen thread-safety is needed.- Tornado now depends on the certifi
package instead of bundling its own copy of the Mozilla CA list. This will
be installed automatically when using
piporeasy_install. - This version includes the changes to the secure cookie format first introduced in version 3.2.1, and the xsrf token change in version 3.2.2. If you are upgrading from an earlier version, see those versions’ release notes.
- WebSocket connections from other origin sites are now rejected by default.
To accept cross-origin websocket connections, override
the new method
WebSocketHandler.check_origin. WebSocketHandlerno longer supports the olddraft 76protocol (this mainly affects Safari 5.x browsers). Applications should use non-websocket workarounds for these browsers.- Authors of alternative
IOLoopimplementations should see the changes toIOLoop.add_handlerin this release. - The
RequestHandler.async_callbackandWebSocketHandler.async_callbackwrapper functions have been removed; they have been obsolete for a long time due to stack contexts (and more recently coroutines). curl_httpclientnow requires a minimum of libcurl version 7.21.1 and pycurl 7.18.2.- Support for
RequestHandler.get_error_htmlhas been removed; overrideRequestHandler.write_errorinstead.
Other notes¶
- The git repository has moved to https://github.com/tornadoweb/tornado. All old links should be redirected to the new location.
- An announcement mailing list is now available.
- All Tornado modules are now importable on Google App Engine (although
the App Engine environment does not allow the system calls used
by
IOLoopso many modules are still unusable).
tornado.auth¶
- Fixed a bug in
FacebookMixinon Python 3. - When using the
Futureinterface, exceptions are more reliably delivered to the caller.
tornado.concurrent¶
tornado.concurrent.Futureis now always thread-unsafe (previously it would be thread-safe if theconcurrent.futurespackage was available). This improves performance and provides more consistent semantics. The parts of Tornado that accept Futures will accept both Tornado’s thread-unsafe Futures and the thread-safeconcurrent.futures.Future.tornado.concurrent.Futurenow includes all the functionality of the oldTracebackFutureclass.TracebackFutureis now simply an alias forFuture.
tornado.curl_httpclient¶
curl_httpclientnow passes along the HTTP “reason” string inresponse.reason.
tornado.gen¶
- Performance of coroutines has been improved.
- Coroutines no longer generate
StackContextsby default, but they will be created on demand when needed. - The internals of the
tornado.genmodule have been rewritten to improve performance when usingFutures, at the expense of some performance degradation for the olderYieldPointinterfaces. - New function
with_timeoutwraps aFutureand raises an exception if it doesn’t complete in a given amount of time. - New object
momentcan be yielded to allow the IOLoop to run for one iteration before resuming. Taskis now a function returning aFutureinstead of aYieldPointsubclass. This change should be transparent to application code, but allowsTaskto take advantage of the newly-optimizedFuturehandling.
tornado.http1connection¶
- New module contains the HTTP implementation shared by
tornado.httpserverandtornado.simple_httpclient.
tornado.httpclient¶
- The command-line HTTP client (
python -m tornado.httpclient $URL) now works on Python 3. - Fixed a memory leak in
AsyncHTTPClientshutdown that affected applications that created many HTTP clients and IOLoops. - New client request parameter
decompress_responsereplaces the existinguse_gzipparameter; both names are accepted.
tornado.httpserver¶
tornado.httpserver.HTTPRequesthas moved totornado.httputil.HTTPServerRequest.- HTTP implementation has been unified with
tornado.simple_httpclientintornado.http1connection. - Now supports
Transfer-Encoding: chunkedfor request bodies. - Now supports
Content-Encoding: gzipfor request bodies ifdecompress_request=Trueis passed to theHTTPServerconstructor. - The
connectionattribute ofHTTPServerRequestis now documented for public use; applications are expected to write their responses via theHTTPConnectioninterface. - The
HTTPServerRequest.writeandHTTPServerRequest.finishmethods are now deprecated. (RequestHandler.writeandRequestHandler.finishare not deprecated; this only applies to the methods onHTTPServerRequest) HTTPServernow supportsHTTPServerConnectionDelegatein addition to the oldrequest_callbackinterface. The delegate interface supports streaming of request bodies.HTTPServernow detects the error of an application sending aContent-Lengtherror that is inconsistent with the actual content.- New constructor arguments
max_header_sizeandmax_body_sizeallow separate limits to be set for different parts of the request.max_body_sizeis applied even in streaming mode. - New constructor argument
chunk_sizecan be used to limit the amount of data read into memory at one time per request. - New constructor arguments
idle_connection_timeoutandbody_timeoutallow time limits to be placed on the reading of requests. - Form-encoded message bodies are now parsed for all HTTP methods, not just
POST,PUT, andPATCH.
tornado.httputil¶
HTTPServerRequestwas moved to this module fromtornado.httpserver.- New base classes
HTTPConnection,HTTPServerConnectionDelegate, andHTTPMessageDelegatedefine the interaction between applications and the HTTP implementation.
tornado.ioloop¶
IOLoop.add_handlerand related methods now accept file-like objects in addition to raw file descriptors. Passing the objects is recommended (when possible) to avoid a garbage-collection-related problem in unit tests.- New method
IOLoop.clear_instancemakes it possible to uninstall the singleton instance. - Timeout scheduling is now more robust against slow callbacks.
IOLoop.add_timeoutis now a bit more efficient.- When a function run by the
IOLoopreturns aFutureand thatFuturehas an exception, theIOLoopwill log the exception. - New method
IOLoop.spawn_callbacksimplifies the process of launching a fire-and-forget callback that is separated from the caller’s stack context. - New methods
IOLoop.call_laterandIOLoop.call_atsimplify the specification of relative or absolute timeouts (as opposed toadd_timeout, which used the type of its argument).
tornado.iostream¶
- The
callbackargument to mostIOStreammethods is now optional. When called without a callback the method will return aFuturefor use with coroutines. - New method
IOStream.start_tlsconverts anIOStreamto anSSLIOStream. - No longer gets confused when an
IOErrororOSErrorwithout anerrnoattribute is raised. BaseIOStream.read_bytesnow accepts apartialkeyword argument, which can be used to return before the full amount has been read. This is a more coroutine-friendly alternative tostreaming_callback.BaseIOStream.read_untilandread_until_regexnow acept amax_byteskeyword argument which will cause the request to fail if it cannot be satisfied from the given number of bytes.IOStreamno longer reads from the socket into memory if it does not need data to satisfy a pending read. As a side effect, the close callback will not be run immediately if the other side closes the connection while there is unconsumed data in the buffer.- The default
chunk_sizehas been increased to 64KB (from 4KB) - The
IOStreamconstructor takes a new keyword argumentmax_write_buffer_size(defaults to unlimited). Calls toBaseIOStream.writewill raiseStreamBufferFullErrorif the amount of unsent buffered data exceeds this limit. ETIMEDOUTerrors are no longer logged. If you need to distinguish timeouts from other forms of closed connections, examinestream.errorfrom a close callback.
tornado.netutil¶
- When
bind_socketschooses a port automatically, it will now use the same port for IPv4 and IPv6. - TLS compression is now disabled by default on Python 3.3 and higher (it is not possible to change this option in older versions).
tornado.options¶
- It is now possible to disable the default logging configuration
by setting
options.loggingtoNoneinstead of the string"none".
tornado.platform.asyncio¶
- Now works on Python 2.6.
- Now works with Trollius version 0.3.
tornado.platform.twisted¶
TwistedIOLoopnow works on Python 3.3+ (with Twisted 14.0.0+).
tornado.simple_httpclient¶
simple_httpclienthas better support for IPv6, which is now enabled by default.- Improved default cipher suite selection (Python 2.7+).
- HTTP implementation has been unified with
tornado.httpserverintornado.http1connection - Streaming request bodies are now supported via the
body_producerkeyword argument totornado.httpclient.HTTPRequest. - The
expect_100_continuekeyword argument totornado.httpclient.HTTPRequestallows the use of the HTTPExpect: 100-continuefeature. simple_httpclientnow raises the original exception (e.g. anIOError) in more cases, instead of converting everything toHTTPError.
tornado.stack_context¶
- The stack context system now has less performance overhead when no stack contexts are active.
tornado.tcpclient¶
- New module which creates TCP connections and IOStreams, including name resolution, connecting, and SSL handshakes.
tornado.testing¶
AsyncTestCasenow attempts to detect test methods that are generators but were not run with@gen_testor any similar decorator (this would previously result in the test silently being skipped).- Better stack traces are now displayed when a test times out.
- The
@gen_testdecorator now passes along*args, **kwargsso it can be used on functions with arguments. - Fixed the test suite when
unittest2is installed on Python 3.
tornado.web¶
- It is now possible to support streaming request bodies with the
stream_request_bodydecorator and the newRequestHandler.data_receivedmethod. RequestHandler.flushnow returns aFutureif no callback is given.- New exception
Finishmay be raised to finish a request without triggering error handling. - When gzip support is enabled, all
text/*mime types will be compressed, not just those on a whitelist. Applicationnow implements theHTTPMessageDelegateinterface.HEADrequests inStaticFileHandlerno longer read the entire file.StaticFileHandlernow streams response bodies to the client.- New setting
compress_responsereplaces the existinggzipsetting; both names are accepted. - XSRF cookies that were not generated by this module (i.e. strings without any particular formatting) are once again accepted (as long as the cookie and body/header match). This pattern was common for testing and non-browser clients but was broken by the changes in Tornado 3.2.2.
tornado.websocket¶
- WebSocket connections from other origin sites are now rejected by default.
Browsers do not use the same-origin policy for WebSocket connections as they
do for most other browser-initiated communications. This can be surprising
and a security risk, so we disallow these connections on the server side
by default. To accept cross-origin websocket connections, override
the new method
WebSocketHandler.check_origin. WebSocketHandler.closeandWebSocketClientConnection.closenow supportcodeandreasonarguments to send a status code and message to the other side of the connection when closing. Both classes also haveclose_codeandclose_reasonattributes to receive these values when the other side closes.- The C speedup module now builds correctly with MSVC, and can support messages larger than 2GB on 64-bit systems.
- The fallback mechanism for detecting a missing C compiler now works correctly on Mac OS X.
- Arguments to
WebSocketHandler.openare now decoded in the same way as arguments toRequestHandler.getand similar methods. - It is now allowed to override
preparein aWebSocketHandler, and this method may generate HTTP responses (error pages) in the usual way. The HTTP response methods are still not allowed once the WebSocket handshake has completed.
tornado.wsgi¶
- New class
WSGIAdaptersupports running a TornadoApplicationon a WSGI server in a way that is more compatible with Tornado’s non-WSGIHTTPServer.WSGIApplicationis deprecated in favor of usingWSGIAdapterwith a regularApplication. WSGIAdapternow supports gzipped output.