~ubuntu-branches/ubuntu/trusty/python-eventlet/trusty-proposed

« back to all changes in this revision

Viewing changes to NEWS

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2010-09-28 21:20:32 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100928212032-c4n67olxdoqzygmt
Tags: 0.9.12-0ubuntu1
New upstream release. (FFe: LP: #645899)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
0.9.12
 
2
======
 
3
* Eventlet no longer uses the Twisted hub if Twisted is imported -- you must call eventlet.hubs.use_hub('twistedr') if you want to use it.  This prevents strange race conditions for those who want to use both Twisted and Eventlet separately.
 
4
* Removed circular import in twistedr.py
 
5
* Added websocket multi-user chat example
 
6
* Not using exec() in green modules anymore.
 
7
* eventlet.green.socket now contains all attributes of the stdlib socket module, even those that were left out by bugs.
 
8
* Eventlet.wsgi doesn't call print anymore, instead uses the logfiles for everything (it used to print exceptions in one place).
 
9
* Eventlet.wsgi properly closes the connection when an error is raised
 
10
* Better documentation on eventlet.event.Event.send_exception
 
11
* Adding websocket.html to tarball so that you can run the examples without checking out the source
 
12
 
1
13
0.9.10
2
14
======
3
15
* Greendns: if dnspython is installed, Eventlet will automatically use it to provide non-blocking DNS queries.  Set the environment variable 'EVENTLET_NO_GREENDNS' if you don't want greendns but have dnspython installed.