summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* tests: use shorter delaysVictor Stinner2014-11-222-18/+19
* doc: debug modeVictor Stinner2014-11-221-0/+23
* link_future() now accepts coroutine objectsVictor Stinner2014-11-224-15/+48
* docVictor Stinner2014-11-222-18/+20
* add versionchanged to the API docVictor Stinner2014-11-221-0/+17
* Revert debug commitVictor Stinner2014-11-221-3/+3
* link_future() now raises an exception if it is called from the greenthread ofVictor Stinner2014-11-224-7/+61
* update TODO listVictor Stinner2014-11-221-1/+0
* Fix eventlet detection of blocking tasks: cancel the alarm when the aiogreenVictor Stinner2014-11-212-1/+15
* debugVictor Stinner2014-11-212-3/+4
* fix testsVictor Stinner2014-11-213-1/+11
* wrap_greenthread() now directly calls fut.set_result() or set.set_exception()Victor Stinner2014-11-211-4/+4
* wrap_greenthread() now raises an exception if the greenthread is runningVictor Stinner2014-11-215-51/+74
* In debug mode, wrap_greenthread() now logs a warning if the greenthead isVictor Stinner2014-11-214-2/+26
* wrap_greenthread() now also works on greenlet objectsVictor Stinner2014-11-215-15/+128
* remove old codeVictor Stinner2014-11-211-36/+0
* set version to 0.3Victor Stinner2014-11-212-3/+3
* setup.py: add Python 3 classifierVictor Stinner2014-11-212-1/+3
* Added tag 0.2 for changeset 7fc582ee385bVictor Stinner2014-11-210-0/+0
* tox: add py27_old and py33_old0.2Victor Stinner2014-11-212-1/+23
* Rewrite call_soon & call_at: call the parent method, and call _write_to_self()Victor Stinner2014-11-211-12/+10
* Fix monkey-unpatching of BaseDefaultEventLoopPolicyVictor Stinner2014-11-211-0/+8
* update the changelogVictor Stinner2014-11-212-4/+8
* update MANIFEST.inVictor Stinner2014-11-211-1/+7
* add MakefileVictor Stinner2014-11-211-0/+9
* TODOVictor Stinner2014-11-212-3/+13
* documentation; update URL in setup.pyVictor Stinner2014-11-214-34/+15
* documentationVictor Stinner2014-11-215-84/+186
* doc: add photo; add openstack sectionVictor Stinner2014-11-217-297/+475
* docVictor Stinner2014-11-211-1/+2
* add link to eventlet & greenletVictor Stinner2014-11-212-6/+20
* _Selector.select() doesn't use polling anymoreVictor Stinner2014-11-211-6/+9
* convert README to a sphinx documentationVictor Stinner2014-11-215-296/+1012
* Add the link_future() functionVictor Stinner2014-11-213-40/+68
* Add the wrap_greenthread() functionVictor Stinner2014-11-214-19/+86
* Port tests to asyncio 3.4.1Victor Stinner2014-11-211-14/+18
* example to chain a task with a coroutineVictor Stinner2014-11-211-8/+70
* call_soon() now detects automatically switch to call_soon_threadsafe() ifVictor Stinner2014-11-213-24/+25
* Test for chain coroutine to greenthreadVictor Stinner2014-11-211-0/+104
* Only set "debug_exceptions" of the eventlet hub when the debug mode of theVictor Stinner2014-11-212-0/+4
* Add more complex coroutine exampleVictor Stinner2014-11-211-1/+31
* runtests.py pass with trollius 0.3Victor Stinner2014-11-212-3/+5
* write docVictor Stinner2014-11-211-1/+62
* In debug mode, detect calls to call_soon() from greenthreads which are notVictor Stinner2014-11-213-1/+51
* cleanup testsVictor Stinner2014-11-212-3/+0
* add eventlet testsVictor Stinner2014-11-211-0/+26
* cleanup codeVictor Stinner2014-11-211-36/+20
* Reuse also the _process_events() method from asyncio/trolliusVictor Stinner2014-11-211-27/+16
* inherit from SelectorEventLoop to avoid duplicated codeVictor Stinner2014-11-211-225/+4
* Rewrite add_reader/add_writer to implement the selectors APIVictor Stinner2014-11-211-83/+119