summaryrefslogtreecommitdiff
path: root/eventlet/coros.py
Commit message (Expand)AuthorAgeFilesLines
* Remove most of the deprecated codeJakub Stasiak2014-10-101-269/+3
* PEP-8 fixesSergey Shepelev2014-08-271-12/+21
* Python3: __bool__, im_code, im_funcVictor Sergeyev2014-04-241-0/+4
* python3 compat: print() function syntaxSergey Shepelev2013-12-031-1/+8
* coros: remove Actor which was deprecated in 2010-01Sergey Shepelev2013-12-031-94/+0
* fixed bug where coros.semaphore passed limit arg to BoundedSemaphore,Tavis Rudd2010-02-271-1/+1
* fixed various minor issues that pyflakes complained about, removed extraneous...Tavis Rudd2010-02-241-15/+16
* tweaks to remove some DeprecationWarnings when running testsEugene Oden2010-02-221-16/+16
* Deprecating coros.Queue and coros.ChannelRyan Williams2010-01-231-0/+6
* Deprecated coros.Actor, tweaked README and testing docs.Ryan Williams2010-01-181-0/+7
* Fixed doctest.Ryan Williams2010-01-181-1/+2
* Converted Actor to use GreenPool.Ryan Williams2010-01-171-2/+3
* Moved Event to its own module. More cycle-breaking!Ryan Williams2010-01-171-9/+10
* Moved semaphore classes into their own module.Ryan Williams2010-01-171-128/+14
* Moved a bunch of stuff around. Event, GreenThread, spawn, spawn_n went to th...Ryan Williams2009-12-261-184/+20
* MergeRyan Williams2009-12-201-0/+6
|\
| * Automated merge with ssh://hg@bitbucket.org/which_linden/eventlet/Ryan Williams2009-12-161-11/+16
| |\
| * \ Automated merge with http://bitbucket.org/which_linden/eventletRyan Williams2009-12-151-0/+6
| |\ \
| | * | Initial commit of Parallel implementationRyan Williams2009-10-031-0/+6
* | | | Moved get_hub, use_hub, get_default_hub to eventlet.hubs. This is a step in ...Ryan Williams2009-12-171-13/+14
| |_|/ |/| |
* | | Renamed coros.event to coros.Event to be compatible with PEP-8 some more.Ryan Williams2009-12-161-11/+16
|/ /
* | Removed copyright headers from individual files, added LICENSE and AUTHORS fi...Ryan Williams2009-10-031-23/+0
|/
* Fix for the bug in Channel that Gregory Holt discovered, two new tests added ...Ryan Williams2009-09-271-2/+0
* Ammended eventlet Sphinx documentation. This removed some of the Doxygen-isms...Huin Linden2009-09-171-25/+28
* Minor doc change.Ryan Williams2009-07-141-3/+4
* coros: update copyrightsDenis Bilenko2009-06-261-0/+2
* coros: use set instead of dict to store waiters in event and SemaphoreDenis Bilenko2009-06-241-8/+8
* coros: reenable sleep() in Channel.send() to give earlier senders/waiters a p...Denis Bilenko2009-06-221-2/+2
* fix bug in coros.Channel: wait could timeout even though there was a send() a...Denis Bilenko2009-06-221-0/+2
* coros: add 2 new class: Queue and Channel to replace the existing queueDenis Bilenko2009-06-221-58/+140
* coros: fix 'balance' property for semaphoresDenis Bilenko2009-06-221-1/+8
* coros.Semaphore: minor optimization for acquire methodDenis Bilenko2009-06-221-2/+3
* coros: better __str__ and __repr__ for semaphoresDenis Bilenko2009-06-221-4/+12
* remove doctest.testmod() from the modules which had itDenis Bilenko2009-06-201-8/+0
* coros.event: remove cancel() methodDenis Bilenko2009-06-161-45/+0
* move copytright and license out of docstring in the commentsDenis Bilenko2009-06-121-23/+20
* coros: remove pipe classDenis Bilenko2009-06-121-21/+0
* coros: remove invalid commentDenis Bilenko2009-06-121-3/+1
* make coros.CoroutinePool return pool.Pool instanceDenis Bilenko2009-06-081-2/+2
* coros: fix to use absolute import in CoroutinePoolDenis Bilenko2009-05-191-1/+1
* move CoroutinePool from coros to poolsDenis Bilenko2009-05-191-473/+3
* Semaphore and BoundedSemaphore: make __enter__ a real function, not an alias ...Denis Bilenko2009-05-191-2/+4
* reimplement BoundedSemaphore using two Semaphores; this resulted in a much mo...Denis Bilenko2009-03-291-47/+24
* add __len__ to coros.queueDenis Bilenko2009-02-091-0/+3
* fix for coros.Semaphore: acquire() could return with Semaphore invariant bein...Denis Bilenko2009-01-271-1/+1
* removed buggy coros.multieventDenis Bilenko2009-01-221-50/+0
* coros: fixed multievent.__repr__Denis Bilenko2009-01-211-1/+1
* removed debuggin print statementsDenis Bilenko2009-01-131-2/+0
* Automated merge with http://www.donovanpreston.com:8888/eventlet-twisted-inte...Denis Bilenko2009-01-131-221/+11
|\
| * added a few comments about coros.event implDenis Bilenko2009-01-121-0/+8