Download Latest Version 1.2.2.zip (3.3 MB)
Email in envelope

Get an email when there's a new version of gevent

Home / v1.1.0
Name Modified Size InfoDownloads / Week
Parent folder
gevent-1.1.0-cp27-cp27m-win32.whl 2016-03-05 354.5 kB
gevent-1.1.0-cp27-cp27m-win_amd64.whl 2016-03-05 385.5 kB
gevent-1.1.0-cp33-cp33m-win32.whl 2016-03-05 355.9 kB
gevent-1.1.0-cp33-cp33m-win_amd64.whl 2016-03-05 383.9 kB
gevent-1.1.0-cp34-cp34m-win32.whl 2016-03-05 356.1 kB
gevent-1.1.0-cp34-cp34m-win_amd64.whl 2016-03-05 383.2 kB
gevent-1.1.0-cp35-cp35m-win32.whl 2016-03-05 348.3 kB
gevent-1.1.0-cp35-cp35m-win_amd64.whl 2016-03-05 382.0 kB
gevent-1.1.0.win32-py2.7.exe 2016-03-05 555.6 kB
gevent-1.1.0.win32-py3.3.exe 2016-03-05 551.9 kB
gevent-1.1.0.win32-py3.4.exe 2016-03-05 552.1 kB
gevent-1.1.0.win32-py3.5.exe 2016-03-05 482.3 kB
gevent-1.1.0.win-amd64-py2.7.exe 2016-03-05 614.1 kB
gevent-1.1.0.win-amd64-py3.3.exe 2016-03-05 611.1 kB
gevent-1.1.0.win-amd64-py3.4.exe 2016-03-05 610.3 kB
gevent-1.1.0.win-amd64-py3.5.exe 2016-03-05 523.1 kB
gevent-1.1.0-cp26-cp26m-macosx_10_11_intel.whl 2016-03-05 722.0 kB
gevent-1.1.0-cp27-cp27m-macosx_10_6_intel.whl 2016-03-05 469.4 kB
gevent-1.1.0-cp33-cp33m-macosx_10_11_x86_64.whl 2016-03-05 466.7 kB
gevent-1.1.0-cp34-cp34m-macosx_10_6_intel.whl 2016-03-05 472.4 kB
gevent-1.1.0-cp35-cp35m-macosx_10_6_intel.whl 2016-03-05 471.3 kB
gevent-1.1.0-pp240-pp240u-macosx_10_11_x86_64.whl 2016-03-05 379.5 kB
gevent-1.1.0.tar.gz 2016-03-05 2.0 MB
1.1.0.tar.gz 2016-03-05 1.7 MB
1.1.0.zip 2016-03-05 2.0 MB
README.md 2016-03-05 2.0 kB
Totals: 26 Items   16.1 MB 0
  • Python 3: A monkey-patched :class:threading.RLock now properly blocks (or deadlocks) in acquire if the default value for timeout of -1 is used (which differs from gevent's default of None). The acquire method also raises the same :exc:ValueError exceptions that the standard library does for invalid parameters. Reported in [#750] by Joy Zheng.
  • Fix a race condition in :class:~gevent.event.Event that made it return False when the event was set and cleared by the same greenlet before allowing a switch to already waiting greenlets. (Found by the 3.4 and 3.5 standard library test suites; the same as Python bug 13502_. Note that the Python 2 standard library still has this race condition.)
  • :class:~gevent.event.Event and :class:~.AsyncResult now wake waiting greenlets in the same (unspecified) order. Previously, AsyncResult tended to use a FIFO order, but this was never guaranteed. Both classes also use less per-instance memory.
  • Using a :class:~logging.Logger as a :mod:pywsgi error or request log stream no longer produces extra newlines. Reported in [#756] by ael-code.
  • Windows: Installing from an sdist (.tar.gz) on PyPI no longer requires having Cython installed first. (Note that the binary installation formats (wheels, exes, msis) are preferred on Windows.) Reported in [#757] by Ned Batchelder.
  • Issue a warning when :func:~gevent.monkey.patch_all is called with os set to False (not the default) but signal is still True (the default). This combination of parameters will cause signal handlers for SIGCHLD to not get called. In the future this might raise an error. Reported by Josh Zuech.
  • Issue a warning when :func:~gevent.monkey.patch_all is called more than once with different arguments. That causes the cumulative set of all True arguments to be patched, which may cause unexpected results.
  • Fix returning the original values of certain threading attributes from :func:gevent.monkey.get_original.
Source: README.md, updated 2016-03-05