PageRenderTime 52ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/website/sphinx/releases/next.rst

http://github.com/facebook/tornado
ReStructuredText | 34 lines | 29 code | 5 blank | 0 comment | 0 complexity | f9c23537f8bf2f4a80c9296ffc6abfbf MD5 | raw file
Possible License(s): Apache-2.0
  1. What's new in the next release of Tornado
  2. =========================================
  3. In progress
  4. -----------
  5. ``tornado.template``
  6. ~~~~~~~~~~~~~~~~~~~~
  7. * Exceptions in template code will now show better stack traces that
  8. reference lines from the original template file.
  9. * ``{#`` and ``#}`` can now be used for comments (and unlike the old
  10. ``{% comment %}`` directive, these can wrap other template directives).
  11. * Template directives may now span multiple lines.
  12. Other modules
  13. ~~~~~~~~~~~~~
  14. * `tornado.iostream.IOStream.write` now works correctly when given an
  15. empty string.
  16. * `tornado.simple_httpclient` no longer hangs on ``HEAD`` requests
  17. and responses with no content.
  18. * `tornado.websocket` has been updated to support the latest protocol
  19. (as finalized in RFC 6455).
  20. * `tornado.platform.twisted` compatibility has been improved. However,
  21. only Twisted version 11.0.0 is supported (and not 11.1.0).
  22. * `tornado.ioloop.PeriodicCallback` no longer triggers duplicate callbacks
  23. when stopped and started repeatedly.
  24. * `tornado.web` now behaves better when given malformed ``Cookie`` headers
  25. * `tornado.testing.main` supports a new flag ``--exception_on_interrupt``,
  26. which can be set to false to make ``Ctrl-C`` kill the process more
  27. reliably (at the expense of stack traces when it does so).
  28. * `tornado.process.fork_processes` correctly reseeds the `random` module
  29. even when `os.urandom` is not implemented.