Tornado 2.4 新特性¶
Sep 4, 2012¶
General¶
- Fixed Python 3 bugs in tornado.auth, tornado.locale, and tornado.wsgi.
HTTP clients¶
- Removed max_simultaneous_connections argument from tornado.httpclient(both implementations). This argument hasn’t been useful for some time(if you were using it you probably want max_clients instead)
- tornado.simple_httpclient now accepts and ignores HTTP 1xx statusresponses.
tornado.ioloop and tornado.iostream¶
- Fixed a bug introduced in 2.3 that would cause IOStream close callbacksto not run if there were pending reads.
- Improved error handling in SSLIOStream and SSL-enabled TCPServer.
- SSLIOStream.get_ssl_certificate now has a binary_form argumentwhich is passed to SSLSocket.getpeercert.
- SSLIOStream.write can now be called while the connection is in progress,same as non-SSL IOStream (but be careful not to send sensitive data untilthe connection has completed and the certificate has been verified).
- IOLoop.add_handler cannot be called more than once with the same filedescriptor. This was always true for epoll, but now the otherimplementations enforce it too.
- On Windows, TCPServer uses SO_EXCLUSIVEADDRUSER instead of SO_REUSEADDR.
tornado.template¶
- {% break %} and {% continue %} can now be used looping constructsin templates.
- It is no longer an error for an if/else/for/etc block in a template tohave an empty body.
tornado.testing¶
- New class tornado.testing.AsyncHTTPSTestCase is like AsyncHTTPTestCase.but enables SSL for the testing server (by default using a self-signedtesting certificate).
- tornado.testing.main now accepts additional keyword arguments and forwardsthem to unittest.main.
tornado.web¶
- New method RequestHandler.get_template_namespace can be overridden toadd additional variables without modifying keyword arguments torender_string.
- RequestHandler.add_header now works with WSGIApplication.
- RequestHandler.get_secure_cookie now handles a potential error case.
- RequestHandler.init now calls super().init to ensure thatall constructors are called when multiple inheritance is used.
- Docs have been updated with a description of all availableApplication settings
Other modules¶
- OAuthMixin now accepts "oob" as a callback_uri.
- OpenIdMixin now also returns the claimed_id field for the user.
- tornado.platform.twisted shutdown sequence is now more compatible.
- The logging configuration used in tornado.options is now more tolerantof non-ascii byte strings.
原文:
https://tornado-zh-cn.readthedocs.io/zh_CN/latest/releases/v2.4.0.html