summaryrefslogtreecommitdiff
path: root/eventlet/queue.py
Commit message (Collapse)AuthorAgeFilesLines
* python3: Stdlib_Queue from six.movesSergey Shepelev2015-10-131-1/+1
|
* Fix docstring which pointed to wrong QueueqdocRamakrishnan G2015-10-131-7/+9
| | | | | | This commit fixes the docstring which pointed to the wrong class eventlet.queue.Queue instead of the one in standard library.
* Improve PEP8 conformanceJakub Stasiak2014-11-111-6/+12
|
* Reformat with autopep8Jakub Stasiak2014-10-111-3/+6
|
* PEP-8 fixesSergey Shepelev2014-08-271-5/+6
|
* Python3: __bool__, im_code, im_funcVictor Sergeyev2014-04-241-0/+2
|
* python3 compat fixesVictor Sergeyev2014-03-281-7/+9
| | | | https://github.com/eventlet/eventlet/pull/59
* queue: Make join not wait if there are no unfinished tasksJakub Stasiak2014-03-271-1/+2
| | | | This fixes GitHub issue #54
* python3 compat: print() function syntaxSergey Shepelev2013-12-031-23/+25
|
* py3k - None is not comparable in 3.x, also queue.resize(None) was not waking ↵amajorek2010-03-071-4/+4
| | | | queued putters
* Bug 37: Implement queue resizingChris AtLee2010-02-221-0/+9
|
* Copying full MIT license into queue and timeout for perfect symmetry with ↵Ryan Williams2010-02-201-1/+22
| | | | gevent's crediting scheme. It seems that only the Copyright lines are actually necessary, but this makes it clear that there's no disparity of credit.
* Imported Timeout class from gevent, deprecated exc_after, replaced ↵Ryan Williams2010-02-151-3/+4
| | | | TimeoutError with Timeout (should be seamless).
* Added monkeypatch stdlib tests, which test how well monkeypatching works. ↵Ryan Williams2010-02-091-0/+1
| | | | Unsurprisingly, some tweakage was also needed.
* Added getting() and putting() methods to the Queue class, replaced ↵Ryan Williams2010-01-231-4/+23
| | | | coros.queue with queue.Queue in pools.py.
* Added eventlet.green.Queue, and refactored the queue module so that it's ↵Ryan Williams2010-01-231-43/+55
| | | | actually stdlib-compatible.
* Moved Event to its own module. More cycle-breaking!Ryan Williams2010-01-171-1/+2
|
* Added Queue class ported from gevent, with tests.Ryan Williams2010-01-141-0/+388