summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* add_reader() and add_writer() now cancels the previous handleVictor Stinner2014-11-203-12/+102
| | | | and sets a new handle
* update the release process; set version to 0.2Victor Stinner2014-11-201-4/+9
|
* changelogVictor Stinner2014-11-201-0/+7
|
* eventlet: importlib+Python 3Victor Stinner2014-11-201-2/+4
|
* remove more dead codeVictor Stinner2014-11-202-22/+3
|
* Force a call to set_debug() to set hub.debug_blockingVictor Stinner2014-11-201-0/+3
|
* eventlet issuesVictor Stinner2014-11-201-0/+12
|
* Fix test_tcp_hello(): wait until the server is listeningVictor Stinner2014-11-201-2/+6
|
* Setting debug mode of the event loop doesn't enable "debug_blocking" ofVictor Stinner2014-11-202-2/+10
| | | | | eventlet on Windows anymore, the feature is not implemented on Windows in eventlet.
* Reuse the event loop policy from asyncio/trolliusVictor Stinner2014-11-202-45/+24
|
* tox: tests also monkey-patchingVictor Stinner2014-11-202-3/+16
|
* eventlet & py3Victor Stinner2014-11-201-0/+21
|
* remove dead codeVictor Stinner2014-11-201-12/+0
|
* Reuse call_soon/call_soon_threadsafe from asyncio/trolliusVictor Stinner2014-11-202-76/+57
| | | | Inline _ThreadQueue into EventLoop: add a self-pipe, code adapted from trollius.
* Remove custom call_at/call_later, use asyncio/trollius codeVictor Stinner2014-11-201-9/+0
|
* Add tox.ini to run tests with toxVictor Stinner2014-11-202-0/+73
|
* port tests to python 2.6Victor Stinner2014-11-201-1/+5
|
* Simplify the loop iteration: remove custom code to reuse instead theVictor Stinner2014-11-202-221/+17
| | | | asyncio/trollius code (_run_once)
* Rewrite the code handling file descriptors to ensure that the listener is onlyVictor Stinner2014-11-202-9/+102
| | | | called once per loop iteration, to respect asyncio specification.
* fix test_timer on windowsVictor Stinner2014-11-201-4/+4
|
* ajust error message for reentrant call to run_forever()Victor Stinner2014-11-201-1/+1
|
* Fix EventLoop.stop(): don't stop immediatly, but schedule stopping the eventVictor Stinner2014-11-203-3/+8
| | | | loop with call_soon()
* update READMEVictor Stinner2014-11-201-8/+1
|
* aiogreen patchs asyncio/trollius to cancel monkey-patchingVictor Stinner2014-11-192-7/+28
|
* Fix _TpoolExecutor: shutdown() calls eventlet.tpool.killall()Victor Stinner2014-11-191-1/+1
|
* use the original socket moduleVictor Stinner2014-11-191-14/+16
|
* If eventlet monkey patched the thread module, use eventlet.tpool as the defaultVictor Stinner2014-11-192-5/+24
| | | | executor
* runtests.py: add --monkey-patch/-m command line optionVictor Stinner2014-11-191-0/+9
|
* tests: each file is now executableVictor Stinner2014-11-196-0/+30
|
* port runtests.py to asyncioVictor Stinner2014-11-192-4/+14
|
* convert last manual test to an unit testVictor Stinner2014-11-192-34/+75
|
* Convert more manual tests to unit testsVictor Stinner2014-11-1911-134/+169
|
* adapt runtests.py to aiogreenVictor Stinner2014-11-191-6/+2
|
* add a first automated unit testVictor Stinner2014-11-194-33/+353
|
* Update TODO listVictor Stinner2014-11-191-3/+0
|
* Rewrite sock_connect() to be asynchronousVictor Stinner2014-11-191-10/+80
| | | | | Copy/paste the code from Trollius, adapt it to work on Python 2, and support asyncio and trollius.
* update READMEVictor Stinner2014-11-191-7/+0
|
* Port to eventlet 0.14Victor Stinner2014-11-192-2/+8
|
* Add link to PyPIVictor Stinner2014-11-191-2/+3
|
* set version to 0.1+Victor Stinner2014-11-191-1/+1
|
* Added tag 0.1 for changeset da02823972c3Victor Stinner2014-11-190-0/+0
|
* prepare release 0.10.1Victor Stinner2014-11-191-5/+14
|
* add MANIFEST.inVictor Stinner2014-11-191-0/+2
|
* fix hello_coro.py on python 2Victor Stinner2014-11-191-5/+7
|
* update READMEVictor Stinner2014-11-191-1/+11
|
* port manual tests to asyncioVictor Stinner2014-11-195-29/+38
|
* rewrite _ThreadQueue to be able to call call_soon_threadsafe() before ↵Victor Stinner2014-11-191-11/+9
| | | | run_forever()
* fix for tulip < 3.4.2Victor Stinner2014-11-191-6/+7
|
* Fix sock_connect(): return a Future objectVictor Stinner2014-11-191-7/+15
|
* run_forever(): first ensure that _run_once() will not be calledVictor Stinner2014-11-191-1/+5
|