Home
> Announcement > gevent 0.13.6 released
gevent 0.13.6 released
May 2, 2011
This is a maintenance release, with a few issues fixed by the users.
Thanks to Galfy Pundee, Alexander Boudkar and Alexey Borzenkov.
Read the (relatively short) changelog entry, download it from PyPI.
Categories: Announcement
gevent, python
what time version 1.0 can release?
gevent has a minor bug in module queue.py:
If a MSW developer has environment variable PYTHONCASEOK set then gevent excepts when trying to import Python module Queue.
gevent’s module queue.py can be modified by adding these 3 lines in front of the line “from Queue import Full, Empty” :
import os
if (os.name == ‘nt’ ) :
os.environ[ ‘PYTHONCASEOK’ ] = ”
Otherwise, gevent can’t tell the difference between modules Queue and queue.
Tested on :
Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)]
{Python 32-bit}
Windows 6.1.7601 {Win7 Home 64-bit}
Ray Pasco
Could you provide a script reproducing the problem? Please use the issue tracker: http://code.google.com/p/gevent/issues