diff options
| author | donovan <donovan@ell-ee-dee.local> | 2008-06-25 11:00:23 -0700 |
|---|---|---|
| committer | donovan <donovan@ell-ee-dee.local> | 2008-06-25 11:00:23 -0700 |
| commit | afba654348c08d9e0bd78ac903d55b162b86de50 (patch) | |
| tree | 61cd036c2ab4e56a2224f3dcb9ca9c1cdc89e2df /setup.py | |
| parent | 0df670fd3ed305c9ad6689179c6be6deb0433005 (diff) | |
| download | eventlet-afba654348c08d9e0bd78ac903d55b162b86de50.tar.gz | |
Fix for some SwitchingToDeadGreenlet or TypeError: '_socketobject' object is not iterable exceptions: Passing both read=True and write=True to trampoline would cause the fd to select as both readable and writable in some error conditions. This would cause the greenlet to be spuriously resumed a second time.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ from setuptools import find_packages, setup setup( name='eventlet', - version='0.5.4pre', + version='0.6pre', description='Coroutine-based networking library', author='Linden Lab', author_email='eventletdev@lists.secondlife.com', |
