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
e20a02ac
Commit
e20a02ac
authored
Jul 27, 2009
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update CHANGES
parent
a70fbdd1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
1 deletion
+28
-1
CHANGES
CHANGES
+28
-1
No files found.
CHANGES
View file @
e20a02ac
0.9.3
-----
All known bugs in the queue module were fixed and it is made 2.4-compatible.
LifoQueue and PriorityQueue are implemented as well.
gevent.queue.Queue has a few differences from the standard Queue:
- Queue(0) means queue of size 0, in other words a channel, not a queue of infinite size.
Having size of 0 means that put() methods always block until the item is delivered.
- Items that are awaiting a free slot participate in the order imposed by the queue.
gevent.queue will deprecate 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 needed:
timeout = Timeout(1)
try:
...
except Timeout, t:
if timeout is not t:
raise # this is timeout set up by someone else and not us; we do not want to catch it
select() function had a bug of this kind that was fixed.
spawn and spawn_later were further optimized and spawning now takes 5-9 microseconds instead of 14.
0.9.2
-----
GreenSocket was simplified and GreenSSL was almost completely rewritten. This fixes
SSL bug reported on eventletdev by Cesar Alaniz as well as failures in test_socket_ssl.py
from Python's standard library. makeGreenFile is gone, makefile
which returns _fileobject
from Python's standard library. makeGreenFile is gone, makefile
(which returns _fileobject)
is available on both GreenSocket and GreenSSL. socket.py still a work in progress.
New class core.active_event is added that takes advantage of libevent's event_active function.
...
...
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