summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* I created the aiogevent project as a spin off of this branchgeventVictor Stinner2014-11-250-0/+0
|
* cleanup codeVictor Stinner2014-11-241-5/+7
|
* Implement _GeventSelectorVictor Stinner2014-11-241-95/+173
|
* split link_future & wrap_greenthread between eventlet & geventVictor Stinner2014-11-242-7/+132
|
* create GeventEventLoopVictor Stinner2014-11-241-10/+26
|
* convert wrap_greenthread from a function to a method of EventletEventLoopVictor Stinner2014-11-246-117/+122
|
* convert link_future to a method of EventletEventLoopVictor Stinner2014-11-244-81/+105
|
* Rename the EventLoop class to EventletEventLoop, and rename the EventLoopPolicyVictor Stinner2014-11-245-12/+19
| | | | class to EventletEventLoopPolicy
* tests: check also the exception messageVictor Stinner2014-11-242-6/+13
|
* wrap_greenthread(): catch missing run attributeVictor Stinner2014-11-243-1/+24
| | | | Add 2 tests: no run attribute, wrap exception.
* add tests directly on greenletVictor Stinner2014-11-241-0/+37
|
* openstack: 2 patches for oslo messagingVictor Stinner2014-11-241-0/+4
|
* Added tag 0.3 for changeset 2e38117c2b48Victor Stinner2014-11-230-0/+0
|
* prepare release 0.30.3Victor Stinner2014-11-231-2/+2
|
* old version of asyncio didn't check thread safetyVictor Stinner2014-11-231-7/+0
|
* typoVictor Stinner2014-11-231-2/+2
|
* Fix to run an event loop in a thread different than the main thread in debugVictor Stinner2014-11-235-3/+76
| | | | | | | mode: disable eventlet "debug_blocking", it is implemented with the SIGALRM signal, but signal handlers can only be set in the main thread. Add a test: run an event loop in a thread different than the main thread.
* fix call_soon() when called on a closed loopVictor Stinner2014-11-232-2/+12
|
* cleanup testsVictor Stinner2014-11-221-33/+18
|
* openstack: full dateVictor Stinner2014-11-221-6/+6
|
* link_future() only accepts coroutine objects, not coroutine functionsVictor Stinner2014-11-223-2/+19
|
* 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
| | | | the aiogreen event loop.
* 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
| | | | event loop stops.
* debugVictor Stinner2014-11-212-3/+4
|
* fix testsVictor Stinner2014-11-213-1/+11
| | | | | * add mock dependency in tox.ini for python older than 3.3 * set tox minimum version to 1.4: set basepython for python older than 3.3
* wrap_greenthread() now directly calls fut.set_result() or set.set_exception()Victor Stinner2014-11-211-4/+4
| | | | instead of using loop.call_soon()
* wrap_greenthread() now raises an exception if the greenthread is runningVictor Stinner2014-11-215-51/+74
| | | | or already finished.
* In debug mode, wrap_greenthread() now logs a warning if the greenthead isVictor Stinner2014-11-214-2/+26
| | | | running
* 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
| | | | Makefile also removes *.pyc & __pycache__
* 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
| | | | if needed; instead of calling call_soon_threadsafe()
* 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
|