| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | python3 compat fixes; Thanks to Astrum Kuo | 郭旭星Astrum Kuo | 2014-04-02 | 5 | -8/+12 | |
| | | | | | | | https://github.com/eventlet/eventlet/pull/82 Celery could work with eventlet in Python3 now | |||||
| * | travis: Build with Python 3.3 | Jakub Stasiak | 2014-03-28 | 2 | -3/+43 | |
| | | ||||||
| * | python3 compat fixes | Victor Sergeyev | 2014-03-28 | 35 | -279/+327 | |
| | | | | | https://github.com/eventlet/eventlet/pull/59 | |||||
| * | support: bundle six 1.5.2 | Sergey Shepelev | 2014-03-28 | 1 | -0/+634 | |
| | | | | | | https://bitbucket.org/gutworth/six http://pythonhosted.org/six/ | |||||
| * | queue: Make join not wait if there are no unfinished tasks | Jakub Stasiak | 2014-03-27 | 2 | -1/+6 | |
| | | | | | This fixes GitHub issue #54 | |||||
| * | green.profile: accumulate results between runs; Thanks to Zhang Hua | Sergey Shepelev | 2014-03-24 | 2 | -9/+17 | |
| | | | | | https://bitbucket.org/eventlet/eventlet/issue/162/eventletgreenprofile-can-not-accumulate | |||||
| * | tox: Refactor configuration | Jakub Stasiak | 2014-01-28 | 1 | -18/+1 | |
| | | ||||||
| * | tox: Bump MySQL-Python version | Jakub Stasiak | 2014-01-28 | 1 | -1/+1 | |
| | | ||||||
| * | websockets: Test and handle lack of Upgrade header | Jakub Stasiak | 2014-01-24 | 2 | -1/+16 | |
| | | ||||||
| * | websockets: handle HTTP_CONNECTION more flexibly | Jakub Stasiak | 2014-01-18 | 2 | -15/+21 | |
| | | | | | This fixes GitHub issue #73 | |||||
| * | websockets: Add websockets13 support | Edward George | 2014-01-01 | 2 | -34/+627 | |
| | | ||||||
| * | packaging: Generate universal wheels | Jakub Stasiak | 2013-12-31 | 1 | -0/+2 | |
| | | ||||||
| * | python3 compat: `raise E(arg)` syntax | Sergey Shepelev | 2013-12-03 | 2 | -2/+2 | |
| | | | | | .with_traceback() is not backward compatible, so left to on-demand 2to3 run | |||||
| * | python3 compat: remove lots of Python 2.5 and earlier dependent code; use ↵ | Sergey Shepelev | 2013-12-03 | 23 | -569/+440 | |
| | | | | | print() function syntax | |||||
| * | python3 compat: print() function syntax | Sergey Shepelev | 2013-12-03 | 48 | -221/+289 | |
| | | ||||||
| * | python3 compat: 2to3: `except E as e:` syntax | Davanum Srinivas | 2013-12-03 | 40 | -104/+104 | |
| | | | | | | | | First step to Python 3 compatibility "2to3 -w -f except ." See [1] [1] http://docs.python.org/2/library/2to3.html#fixers | |||||
| * | coros: remove Actor which was deprecated in 2010-01 | Sergey Shepelev | 2013-12-03 | 2 | -222/+0 | |
| | | ||||||
| * | saranwrap: remove saranwrap which was deprecated in 2010-02 | Sergey Shepelev | 2013-12-03 | 2 | -1102/+0 | |
| | | ||||||
| * | doc: recommend install via pip | Omer Katz | 2013-11-06 | 1 | -7/+7 | |
| | | ||||||
| * | tpool: proxy __enter__, __exit__ fixes BB-158; Thanks to Eric Urban | Sergey Shepelev | 2013-10-02 | 2 | -9/+26 | |
| | | | | | https://bitbucket.org/eventlet/eventlet/issue/158/eventlet-pooled-psycopg2-connections-wont | |||||
| * | Bump version to 0.15.0.dev | Sergey Shepelev | 2013-09-13 | 1 | -1/+1 | |
| | | ||||||
| * | 0.14 release (branding)v0.14 | Sergey Shepelev | 2013-09-13 | 4 | -4/+18 | |
| | | ||||||
| * | websocket: allow "websocket" in lowercase in Upgrade header (Google Chrome ↵ | Dmitry Orlov | 2013-09-13 | 1 | -1/+1 | |
| | | | | | sends so) | |||||
| * | wsgi: Allow minimum_chunk_size to be overriden on a per request basis | David Goetz | 2013-09-05 | 2 | -2/+66 | |
| | | | | | | | | | The application can set environ['eventlet.minimum_write_chunk_size'] which will override the minimum_chunk_size set on server initialization for a single request. https://bitbucket.org/eventlet/eventlet/pull-request/37/allow-minimum_chunk_size-to-be-overriden | |||||
| * | Rename README{,.rst} for Github render; Thanks to Thomas Grainger and Tobias ↵ | Sergey Shepelev | 2013-09-05 | 3 | -2/+2 | |
| | | | | | | | Megies; Fixes GH-47 https://github.com/eventlet/eventlet/issues/47 | |||||
| * | tox: Add pep8 and flake8 configuration in tox.ini | Floris Bruynooghe | 2013-08-19 | 1 | -0/+12 | |
| | | | | | | | | This helps ensuring everyone uses the code checkers with the same configuration. Initial values based on earlier discussion. The max-line-length is currently just based on the screen width I have on my netbook. | |||||
| * | add gitignore | Sergey Shepelev | 2013-08-15 | 1 | -0/+7 | |
| | | ||||||
| * | doc: index page major update | Sergey Shepelev | 2013-08-14 | 1 | -42/+91 | |
| | | | | | | | | | | - Prefer pip over easy_install - Link to Github, build.eventlet.net - Pull request policy - Web crawler example rewritten with client side code highlighter -- easier to read source - Non-blocking Ohloh widget iframe - Add Travis build image | |||||
| * | green.ssl: Fix NameError GH-17 | Jakub Stasiak | 2013-08-12 | 2 | -13/+35 | |
| | | | | | https://github.com/eventlet/eventlet/issues/17 | |||||
| * | greenio: socket pypy compatibility; Thanks to Alex Gaynor | Sergey Shepelev | 2013-08-09 | 1 | -1/+19 | |
| | | | | | https://bitbucket.org/eventlet/eventlet/issue/154/sockets-arent-compatible-with-pypy | |||||
| * | wsgi: configurable socket_timeout | Sergey Shepelev | 2013-08-09 | 2 | -3/+21 | |
| | | ||||||
| * | wsgi: pep8 whitespace | Sergey Shepelev | 2013-08-08 | 1 | -2/+9 | |
| | | ||||||
| * | wsgi: close timed out client connections | Sergey Shepelev | 2013-08-08 | 1 | -0/+1 | |
| | | ||||||
| * | tests: kill all tpool workers in LimitedTestCase | Jakub Stasiak | 2013-08-07 | 4 | -73/+78 | |
| | | | | | Fixes GH-41 https://github.com/eventlet/eventlet/issues/41 | |||||
| * | doc: add Google Analytics tracking code | Sergey Shepelev | 2013-08-04 | 2 | -0/+23 | |
| | | ||||||
| * | tox: run tests with newer versions of optional dependencies | Sergey Shepelev | 2013-07-11 | 1 | -8/+8 | |
| | | ||||||
| * | wsgi: handle connection socket timeouts | Paul Oppenheim | 2013-07-09 | 3 | -3/+196 | |
| | | | | | Fixes https://bitbucket.org/eventlet/eventlet/issue/143 | |||||
| * | tests: extract run_python() utility function | Sergey Shepelev | 2013-07-09 | 2 | -12/+28 | |
| | | | | | Proposal is to use it for new subprocess tests where module is commited to repo | |||||
| * | greenio: remove excess asserts for args | Sergey Shepelev | 2013-07-09 | 1 | -2/+0 | |
| | | | | | Fixes https://bitbucket.org/eventlet/eventlet/issue/121 | |||||
| * | tests: ProcessBase should call parent setUp/tearDown; Thanks to Paul Oppenheim | Sergey Shepelev | 2013-07-09 | 1 | -12/+17 | |
| | | | | | +some PEP8 | |||||
| * | tests: skip check_idle_cpu_usage on Windows; Thanks to Paul Oppenheim | Sergey Shepelev | 2013-07-09 | 1 | -1/+9 | |
| | | | | | TODO: use psutil package which ought to work on Windows | |||||
| * | support: greendns: always resolve port | Sergey Shepelev | 2013-07-09 | 2 | -6/+20 | |
| | | | | | Fixes https://bitbucket.org/eventlet/eventlet/issue/152 | |||||
| * | wsgi: env['wsgi.input'] was returning 1 byte strings | Eric Urban | 2013-07-09 | 2 | -1/+29 | |
| | | | | | Fixes https://bitbucket.org/eventlet/eventlet/issue/150/env-wsgiinput-returns-a-single-byte-at-a | |||||
| * | doc: fix 0.13 release PyPi tarball link | Sergey Shepelev | 2013-07-02 | 1 | -1/+1 | |
| | | ||||||
| * | Bump version to 0.14.0.dev | Sergey Shepelev | 2013-07-02 | 1 | -1/+1 | |
| | | ||||||
| * | 0.13 release (branding)v0.13 | Sergey Shepelev | 2013-07-02 | 4 | -3/+25 | |
| | | ||||||
| * | green.zmq: pyzmq 13.x compatibility | Edward George | 2013-07-02 | 1 | -6/+15 | |
| | | | | | Fixes 'Socket has no such option: _EVENTLET_SEND_EVENT' errors | |||||
| * | hubs: get_default_hub() on Windows broken by kqueue; Thanks to Paul Oppenheim | Sergey Shepelev | 2013-07-02 | 3 | -35/+99 | |
| | | | | | | Fixes https://github.com/eventlet/eventlet/issues/38 +autopep8 | |||||
| * | semaphore: support timeout for acquire | Justin Patrin | 2013-06-28 | 2 | -19/+75 | |
| | | | | | Fixes https://bitbucket.org/eventlet/eventlet/issue/147/semaphoresemaphore-should-support-a | |||||
| * | tests: subprocess.communicate block on Python 2.7 | Sergey Shepelev | 2013-06-13 | 1 | -15/+35 | |
| | | | | | | https://github.com/eventlet/eventlet/pull/24 + PEP8 fix tabs | |||||
