Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
7547115c
Commit
7547115c
authored
Aug 01, 2009
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update CHANGES
parent
a57d5de1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
CHANGES
CHANGES
+4
-2
No files found.
CHANGES
View file @
7547115c
...
...
@@ -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 ca
tched
is actually the one raised:
This makes it easy to check that a timeout ca
ught
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 ca
tched
inside)
it can still be ca
ught
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
-----
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment