summaryrefslogtreecommitdiff
path: root/README
Commit message (Collapse)AuthorAgeFilesLines
* rename the project from aiogreen to aioeventletVictor Stinner2014-12-031-12/+13
|
* documentationVictor Stinner2014-11-211-16/+4
|
* doc: add photo; add openstack sectionVictor Stinner2014-11-211-2/+2
|
* add link to eventlet & greenletVictor Stinner2014-11-211-3/+10
|
* convert README to a sphinx documentationVictor Stinner2014-11-211-296/+22
|
* Add the link_future() functionVictor Stinner2014-11-211-2/+25
|
* Add the wrap_greenthread() functionVictor Stinner2014-11-211-0/+33
|
* call_soon() now detects automatically switch to call_soon_threadsafe() ifVictor Stinner2014-11-211-9/+0
| | | | | selector.select() is running. Similar change for call_at(): reschedule the call with call_soon_threadsafe() if selector.select() is running.
* Only set "debug_exceptions" of the eventlet hub when the debug mode of theVictor Stinner2014-11-211-0/+2
| | | | event loop is enabled.
* runtests.py pass with trollius 0.3Victor Stinner2014-11-211-2/+4
|
* write docVictor Stinner2014-11-211-1/+62
|
* In debug mode, detect calls to call_soon() from greenthreads which are notVictor Stinner2014-11-211-0/+18
| | | | threadsafe (would not wake up the event loop).
* add_reader() and add_writer() now cancels the previous handleVictor Stinner2014-11-201-0/+2
| | | | and sets a new handle
* changelogVictor Stinner2014-11-201-0/+7
|
* eventlet: importlib+Python 3Victor Stinner2014-11-201-2/+4
|
* remove more dead codeVictor Stinner2014-11-201-0/+1
|
* eventlet issuesVictor Stinner2014-11-201-0/+12
|
* Setting debug mode of the event loop doesn't enable "debug_blocking" ofVictor Stinner2014-11-201-0/+3
| | | | | eventlet on Windows anymore, the feature is not implemented on Windows in eventlet.
* tox: tests also monkey-patchingVictor Stinner2014-11-201-2/+6
|
* eventlet & py3Victor Stinner2014-11-201-0/+21
|
* Reuse call_soon/call_soon_threadsafe from asyncio/trolliusVictor Stinner2014-11-201-0/+2
| | | | Inline _ThreadQueue into EventLoop: add a self-pipe, code adapted from trollius.
* Add tox.ini to run tests with toxVictor Stinner2014-11-201-0/+31
|
* Simplify the loop iteration: remove custom code to reuse instead theVictor Stinner2014-11-201-0/+2
| | | | asyncio/trollius code (_run_once)
* Rewrite the code handling file descriptors to ensure that the listener is onlyVictor Stinner2014-11-201-0/+2
| | | | called once per loop iteration, to respect asyncio specification.
* Fix EventLoop.stop(): don't stop immediatly, but schedule stopping the eventVictor Stinner2014-11-201-0/+2
| | | | loop with call_soon()
* update READMEVictor Stinner2014-11-201-8/+1
|
* aiogreen patchs asyncio/trollius to cancel monkey-patchingVictor Stinner2014-11-191-3/+3
|
* If eventlet monkey patched the thread module, use eventlet.tpool as the defaultVictor Stinner2014-11-191-5/+1
| | | | executor
* port runtests.py to asyncioVictor Stinner2014-11-191-2/+7
|
* Update TODO listVictor Stinner2014-11-191-3/+0
|
* update READMEVictor Stinner2014-11-191-7/+0
|
* Port to eventlet 0.14Victor Stinner2014-11-191-1/+1
|
* Add link to PyPIVictor Stinner2014-11-191-2/+3
|
* prepare release 0.10.1Victor Stinner2014-11-191-5/+14
|
* update READMEVictor Stinner2014-11-191-1/+11
|
* update setup.py: adjust asyncio dependencyVictor Stinner2014-11-191-1/+5
| | | | use builtin asyncio, use tulip or use trollus depending on the python version
* support asyncioVictor Stinner2014-11-191-0/+1
|
* add a setup.pyVictor Stinner2014-11-191-4/+37
|
* TODOVictor Stinner2014-11-191-0/+2
|
* update FIXMEsVictor Stinner2014-11-191-0/+4
|
* rewrite _run_once() to respect asyncio contractVictor Stinner2014-11-191-1/+0
| | | | | | | | | | * call_soon() now schedules a call to _run_once() and queue the callback in the _ready list * call_at() now schedules a call to _run_once() later using a timer, and queue the callback in the _scheduled heap queue * _run_once() is interrupted as soon as stop() is called Calling loop.stop() now ensure that all callbacks scheduled after will *not* be executed
* TODOVictor Stinner2014-11-121-0/+1
|
* implement socket_connectVictor Stinner2014-11-121-1/+2
|
* implement add_reader & cieVictor Stinner2014-11-121-1/+0
|
* update statusVictor Stinner2014-11-121-2/+11
|
* implement run_until_completeVictor Stinner2014-11-121-4/+5
| | | | sort also imports
* call_soon_threadsafe, run_in_executorVictor Stinner2014-11-071-5/+9
|
* initial commitVictor Stinner2014-11-071-0/+13