| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | PEP-8 fixes | Sergey Shepelev | 2014-08-27 | 1 | -2/+3 |
| | | |||||
| * | python3 compat fixes | Victor Sergeyev | 2014-03-28 | 1 | -1/+1 |
| | | | | | https://github.com/eventlet/eventlet/pull/59 | ||||
| * | python3 compat: remove lots of Python 2.5 and earlier dependent code; use ↵ | Sergey Shepelev | 2013-12-03 | 1 | -39/+21 |
| | | | | | print() function syntax | ||||
| * | python3 compat: print() function syntax | Sergey Shepelev | 2013-12-03 | 1 | -2/+5 |
| | | |||||
| * | Better accounting of current_size in pools.Pool, thanks to Brett Hoerner for ↵ | Ryan Williams | 2011-06-08 | 1 | -3/+8 |
| | | | | | reporting #91. | ||||
| * | Fixed sphinx warnings, thanks to jbergstroem for buggin' me about them. | Ryan Williams | 2010-08-20 | 1 | -5/+5 |
| | | |||||
| * | Two minor tweaks. | Ryan Williams | 2010-03-15 | 1 | -1/+1 |
| | | |||||
| * | added `create` argument to pools.Pool constructor | Sergey Shepelev | 2010-03-10 | 1 | -7/+31 |
| | | | | | | | | | This argument takes a nullary function and assigns it to `self.create`, so the function is used for creating new items in pool. This is another method to create items in pool, sometimes simpler than subclassing. | ||||
| * | fixed various minor issues that pyflakes complained about, removed ↵ | Tavis Rudd | 2010-02-24 | 1 | -28/+26 |
| | | | | | extraneous whitespace, wrapped long lines | ||||
| * | Improved docs on pools for ericflo, fixes #40. | Ryan Williams | 2010-02-21 | 1 | -32/+57 |
| | | |||||
| * | Deprecated api.py and removed references to it. | Ryan Williams | 2010-02-20 | 1 | -1/+0 |
| | | |||||
| * | Added getting() and putting() methods to the Queue class, replaced ↵ | Ryan Williams | 2010-01-23 | 1 | -5/+5 |
| | | | | | coros.queue with queue.Queue in pools.py. | ||||
| * | More doc cleanup. Removed timer module from docs because it's an internal ↵ | Ryan Williams | 2009-12-31 | 1 | -12/+6 |
| | | | | | detail. | ||||
| * | Indentation problem caused >2.4 to break. | Ryan Williams | 2009-12-03 | 1 | -19/+19 |
| | | |||||
| * | Fixes to make tests pass on python2.4. The tricks to make with-statement ↵ | Ryan Williams | 2009-12-03 | 1 | -23/+29 |
| | | | | | stuff work even when imported by 2.4 are especially tricky, but there doesn't seem to be a better alternative. | ||||
| * | Removed copyright headers from individual files, added LICENSE and AUTHORS ↵ | Ryan Williams | 2009-10-03 | 1 | -21/+0 |
| | | | | | files to give credit instead. Linked authors list into documentation. | ||||
| * | Added with-statement to pools.Pool objects for mad 2.5-ability. Should be ↵ | Ryan Williams | 2009-10-03 | 1 | -5/+25 |
| | | | | | 2.4-compatible though. | ||||
| * | Ammended eventlet Sphinx documentation. This removed some of the ↵ | Huin Linden | 2009-09-17 | 1 | -11/+14 |
| | | | | | Doxygen-isms, and introduced some more complete linking between parts of the documents. | ||||
| * | Removed ConnectionPool which didn't seem usable, and also Pool.fan which has ↵ | Ryan Williams | 2009-07-14 | 1 | -72/+8 |
| | | | | | been supplanted by better abstractions. | ||||
| * | fix pools to use new Queue class | Denis Bilenko | 2009-06-22 | 1 | -5/+3 |
| | | |||||
| * | remove doctest.testmod() from the modules which had it | Denis Bilenko | 2009-06-20 | 1 | -4/+0 |
| | | | | | there's test__doctests.py now that runs the doctests | ||||
| * | move copytright and license out of docstring in the comments | Denis Bilenko | 2009-06-12 | 1 | -23/+20 |
| | | |||||
| * | pools: don't use channel (which is now deprecated) use queue(0) directly | Denis Bilenko | 2009-06-12 | 1 | -6/+5 |
| | | |||||
| * | remove a number of unused imports | Denis Bilenko | 2009-06-08 | 1 | -1/+0 |
| | | |||||
| * | remove CoroutinePool from pools | Denis Bilenko | 2009-06-08 | 1 | -456/+0 |
| | | |||||
| * | pools: add doctest runner at the end | Denis Bilenko | 2009-05-22 | 1 | -0/+4 |
| | | |||||
| * | Disabled timing-sensitive db_pool tests until we come up with a better way ↵ | Ryan Williams | 2009-05-20 | 1 | -1/+2 |
| | | | | | to keep them from failing all the time. Re-fixed raising-while-creating bug. Now all the tests pass. | ||||
| * | import pools.py from https://bitbucket.org/which_linden/eventlet/ | Denis Bilenko | 2009-05-19 | 1 | -101/+64 |
| | | |||||
| * | Time-based expiry for db_pool. This adds the ability to expire connections ↵ | rdw | 2008-08-13 | 1 | -3/+26 |
| | | | | | by idleness and also to cap them to a finite lifespan (which will come in handy for e.g. mysql, which holds some locks on a per-connection basis). | ||||
| * | move CoroutinePool from coros to pools | Denis Bilenko | 2009-05-19 | 1 | -2/+550 |
| | | |||||
| * | Rename the eventlet.support.greenlet module to greenlets to avoid clashing ↵ | donovan | 2008-12-29 | 1 | -49/+0 |
| | | | | | with the pypi greenlet distribution; support the pypi greenlet distribution; port httpc_test to use wsgi instead of httpd; add channel back in because I couldn't get pool to work properly with queue yet | ||||
| * | fixed cyclic import in eventlet.pools | Denis Bilenko | 2008-11-24 | 1 | -1/+1 |
| | | |||||
| * | Initial implementation of libeventhub. Works for some basic socket stuff ↵ | rdw | 2008-03-16 | 1 | -0/+184 |
| but it's got problems. | |||||
