Merge branch 'branch4.0'

Conflicts:
	docs/releases.rst
	setup.py
	tornado/__init__.py
This commit is contained in:
Ben Darnell 2014-09-14 22:02:27 -04:00
commit ca2cf40cb4
2 changed files with 23 additions and 0 deletions

View File

@ -5,6 +5,7 @@ Release notes
:maxdepth: 2
releases/next
releases/v4.0.2
releases/v4.0.1
releases/v4.0.0
releases/v3.2.2

22
docs/releases/v4.0.2.rst Normal file
View File

@ -0,0 +1,22 @@
What's new in Tornado 4.0.2
===========================
Sept 10, 2014
-------------
Bug fixes
~~~~~~~~~
* Fixed a bug that could sometimes cause a timeout to fire after being
cancelled.
* `.AsyncTestCase` once again passes along arguments to test methods,
making it compatible with extensions such as Nose's test generators.
* `.StaticFileHandler` can again compress its responses when gzip is enabled.
* ``simple_httpclient`` passes its ``max_buffer_size`` argument to the
underlying stream.
* Fixed a reference cycle that can lead to increased memory consumption.
* `.add_accept_handler` will now limit the number of times it will call
`~socket.socket.accept` per `.IOLoop` iteration, addressing a potential
starvation issue.
* Improved error handling in `.IOStream.connect` (primarily for FreeBSD
systems)