Commit 7547115c authored by Denis Bilenko's avatar Denis Bilenko

update CHANGES

parent a57d5de1
......@@ -11,7 +11,7 @@ Having size of 0 means that put() methods always block until the item is deliver
gevent.queue will deprecate both coros.Queue and coros.Channel.
Timeout now raises itself by default. TimeoutError is gone.
This makes it easy to check that a timeout catched is actually the one raised:
This makes it easy to check that a timeout caught is actually the one raised:
timeout = Timeout(1)
try:
......@@ -24,7 +24,7 @@ select() function had a bug of this kind that was fixed.
To instruct a with-block to silent the timeout one must pass False as a second
argument. In this case Timeout won't leave the with-block it belongs to (but
it can still be catched inside)
it can still be caught inside)
with Timeout(1, False):
read()
......@@ -47,6 +47,8 @@ wait until libevent has finished dispatching the events.
core.pyx now checks the return value of event_add and event_del and raises
IOError if they have failed.
backdoor.py, accidentally broken in the previous release, was fixed.
0.9.2
-----
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment