forked from tornadoweb/tornado
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ Release notes | |
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
releases/next | ||
releases/v2.4.0 | ||
releases/v2.3.0 | ||
releases/v2.2.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
What's new in the next release of Tornado | ||
========================================= | ||
|
||
In progress | ||
----------- | ||
|
||
* The Tornado test suite now requires ``unittest2`` when run on Python 2.5 | ||
or 2.6. | ||
* `tornado.testing.AsyncTestCase` and friends now extend ``unittest2.TestCase`` | ||
when it is available (and continue to use the standard ``unittest`` module | ||
when ``unittest2`` is not available) | ||
* `tornado.netutil.bind_sockets` no longer sets ``AI_ADDRCONFIG``; this will | ||
cause it to bind to both ipv4 and ipv6 more often than before. | ||
* `tornado.netutil.bind_sockets` has a new ``flags`` argument that can | ||
be used to pass additional flags to ``getaddrinfo``. |