| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | tpool: make sure we return results during killall | David Szotten | 2015-02-21 | 1 | -1/+17 |
| | | | | | since we are about to delete the _rspq | ||||
| * | PEP-8 fixes | Sergey Shepelev | 2014-08-27 | 1 | -7/+7 |
| | | |||||
| * | greenio, tpool: python3 compatibility | Sergey Shepelev | 2014-07-18 | 1 | -1/+1 |
| | | | | | | | | Also: - PEP-8 - check both EAGAIN/EWOULDBLOCK - use system implementation of GreenPipe.readinto() | ||||
| * | tests: deprecated TestCase.assert_() -> assert keyword | Sergey Shepelev | 2014-07-16 | 1 | -21/+21 |
| | | | | | https://github.com/eventlet/eventlet/issues/101 | ||||
| * | python3 compatibility | Sergey Shepelev | 2014-04-24 | 1 | -35/+41 |
| | | | | | | | | | | | | | - __next__ for iterator interface - six.next() to get next item - list(dict.keys()) - popen2.popen4 -> subprocess - s2b -> b"..." literals - deprecated assertEquals -> assertEqual - hub_test test_fork using run_python - 1L -> 1 long literal - many PEP-8 fixes | ||||
| * | python3 compat fixes | Victor Sergeyev | 2014-03-28 | 1 | -8/+13 |
| | | | | | https://github.com/eventlet/eventlet/pull/59 | ||||
| * | python3 compat: print() function syntax | Sergey Shepelev | 2013-12-03 | 1 | -10/+11 |
| | | |||||
| * | Added missing global var, and added nose test for set_num_threads | David Ibarra | 2012-11-02 | 1 | -0/+5 |
| | | |||||
| * | Timeouts get porpagated out of tpool.execute. | Ryan Williams | 2011-04-12 | 1 | -0/+6 |
| | | |||||
| * | Removed superfluous esend method, pyevent skip for yet another tpool test, durr. | Ryan Williams | 2010-10-03 | 1 | -0/+1 |
| | | |||||
| * | Cleaned up tpool-related tests a bit. | Ryan Williams | 2010-09-29 | 1 | -4/+2 |
| | | |||||
| * | Greenlet affinity for tpool threads. This means that if you make multiple ↵ | Ryan Williams | 2010-09-28 | 1 | -4/+28 |
| | | | | | tpool calls with the same greenthread, they will all go through the same real thread. | ||||
| * | tpool.Proxy now wraps functions. Improved impolementations of equality and ↵ | Ryan Williams | 2010-06-21 | 1 | -0/+28 |
| | | | | | iteration in tpool as well. | ||||
| * | Converted fully over to what the internet assures me is the American ↵ | Ryan Williams | 2010-05-05 | 1 | -3/+0 |
| | | | | | spelling of 'canceled' -- this only affects internal variables. Also cleaned up the meticulous timer accounting of the hub tests so they stop failing after other tests are run. Also added new parameter to the abort method because it seemed to be the dominant mode of operation. | ||||
| * | Adding more explicit exception assertion to tpool test. | Ryan Williams | 2010-04-18 | 1 | -0/+7 |
| | | |||||
| * | More tinkering with the iterator tests to cut down on false positives. | Ryan Williams | 2010-03-29 | 1 | -3/+7 |
| | | |||||
| * | Lessen timing-dependency of this count, also better error reporting. | Ryan Williams | 2010-03-25 | 1 | -3/+3 |
| | | |||||
| * | Fixed overlong duration of iterator test. | Ryan Williams | 2010-03-25 | 1 | -4/+5 |
| | | |||||
| * | Improved implentation of iterators in tpool; thanks to Slant | Ryan Williams | 2010-03-17 | 1 | -0/+24 |
| | | |||||
| * | py3k - corrections for deprecation warnings reported by python2.6 -3. | amajorek | 2010-03-09 | 1 | -1/+11 |
| | | | | | | | | - integer division - repr instead of ` Added __hash__ to speedy Proxy funtions - 3.x requires __hash__ if __eq__ is defined. Found problem with comparing two proxy objects. | ||||
| * | py3k - more testcases ported | amajorek | 2010-03-07 | 1 | -4/+3 |
| | | |||||
| * | It turns out that __iter__ is one of those magical methods, too. Now tpool ↵ | Ryan Williams | 2010-03-04 | 1 | -0/+9 |
| | | | | | supports proxying iterators. | ||||
| * | Kill all! | Ryan Williams | 2010-02-24 | 1 | -1/+2 |
| | | |||||
| * | Switching order of teardown makes it less bitchy about lingering listeners. | Ryan Williams | 2010-02-24 | 1 | -3/+1 |
| | | |||||
| * | tweaks to remove some DeprecationWarnings when running tests | Eugene Oden | 2010-02-22 | 1 | -5/+5 |
| | | |||||
| * | Extended tpool's autowrap functionality to use the name of the attribute, ↵ | Ryan Williams | 2010-02-06 | 1 | -0/+29 |
| | | | | | which is a lot cleaner than type-checking (which is still supported). Added psycopg tests to db_pool tests. | ||||
| * | Removed unnecessary setup() call in tpool_test. | Ryan Williams | 2010-01-18 | 1 | -1/+0 |
| | | |||||
| * | Fixed a few rare errors revealed by copious testing, moved long-duration ↵ | Ryan Williams | 2010-01-15 | 1 | -51/+47 |
| | | | | | tpool tests to their own testcase with longer timeout. | ||||
| * | Removed deprecation warnings from tpool_test.py, more cleanup in killall and ↵ | Ryan Williams | 2010-01-15 | 1 | -13/+14 |
| | | | | | setup. | ||||
| * | Converted tpool to use newer APIs, improved cleanup and tests some more. | Ryan Williams | 2010-01-15 | 1 | -7/+4 |
| | | |||||
| * | Slightly improved setup/killall, and added debugging to tpool tests. | Ryan Williams | 2010-01-14 | 1 | -1/+3 |
| | | |||||
| * | Some essentially-meaningless reorg in the tpool tests, mostly for the ↵ | Ryan Williams | 2009-12-18 | 1 | -34/+19 |
| | | | | | purposes of making them more understandable and faster-executing. | ||||
| * | Renamed libevent hub to pyevent. | Ryan Williams | 2009-12-16 | 1 | -17/+17 |
| | | |||||
| * | Changes to tests so they no longer import uuid since that's not 2.4-standard. | Ryan Williams | 2009-09-17 | 1 | -20/+20 |
| | | |||||
| * | It turns out that if my --eventlet-hub=foo command fails to import foo, I ↵ | Ryan Williams | 2009-08-31 | 1 | -1/+17 |
| | | | | | don't really want it to just write a warning, I want it to crash hard. Skipped the threading-related tests when using the libevent hub, as well as the multiple readers test, because it fails all of them. | ||||
| * | Added cool little debug mode to Hub which makes it easier to see why a ↵ | Ryan Williams | 2009-08-24 | 1 | -1/+6 |
| | | | | | particular fileno is in the hub by recording the traceback of when the fileno was added. Enable this mode by doing api.get_hub().debug = True. Tweaked tpool so that it only starts up its thread pool when you actually call execute(). I think this is not a performance hit and it will make it somewhat nicer to use. Some other randomc changes like more explicit package name in test_named so it passes when called from within nose. | ||||
| * | Moved some copy-and-paste test code into stdlib and did the monkeypatching ↵ | Ryan Williams | 2009-08-24 | 1 | -3/+5 |
| | | | | | thing on it. Improved nose-friendliness of dbpool and tpool tests. | ||||
| * | Eliminate references to 'greentest' | Ryan Williams | 2009-07-27 | 1 | -1/+1 |
| | | |||||
| * | Renamed greentest to tests to be more standard. | Ryan Williams | 2009-07-24 | 1 | -0/+216 |
