From 94dc142526e9ff11b71df2c9956d02542016504f Mon Sep 17 00:00:00 2001 From: Ryan Williams Date: Tue, 25 May 2010 15:13:07 -0700 Subject: [PATCH] Updated NEWS with changes, adding wrap_ssl to the docs. --- NEWS | 11 +++++++++++ doc/basic_usage.rst | 2 ++ 2 files changed, 13 insertions(+) diff --git a/NEWS b/NEWS index 61cab49..0fd1c7b 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,14 @@ +0.9.8 +===== +* Support for psycopg2's asynchronous mode, from Daniele Varrazzo +* websocket module is now a core module with 100% unit test coverage thanks to Ben Ford. See its documentation at http://eventlet.net/doc/modules/websocket.html +* Added wrap_ssl convenience method, meaning that we truly no longer need api or util modules. +* Multiple-reader detection code protects against the common mistake of having multiple greenthreads read from the same socket at the same time, which can be overridden if you know what you're doing. +* Cleaner monkey_patch API: the "all" keyword is no longer necessary. +* Pool objects have a more convenient constructor -- no more need to subclass +* amajorek's reimplementation of GreenPipe +* Many bug fixes, major and minor. + 0.9.7 ===== * GreenPipe is now a context manager (thanks, quad) diff --git a/doc/basic_usage.rst b/doc/basic_usage.rst index f33a7aa..7b0aad3 100644 --- a/doc/basic_usage.rst +++ b/doc/basic_usage.rst @@ -74,6 +74,8 @@ Network Convenience Functions .. autofunction:: eventlet.listen +.. autofunction:: eventlet.wrap_ssl + .. autofunction:: eventlet.serve .. autofunction:: eventlet.StopServe