| Commit message (Expand) | Author | Age | Files | Lines |
| * | PEP-8 fixes | Sergey Shepelev | 2014-08-27 | 1 | -0/+1 |
| * | greenio, tpool: python3 compatibility | Sergey Shepelev | 2014-07-18 | 1 | -53/+33 |
| * | PEP8 whitespace | Sergey Shepelev | 2014-06-12 | 1 | -0/+1 |
| * | python3 compatibility | Sergey Shepelev | 2014-04-24 | 1 | -19/+43 |
| * | Python3: __bool__, im_code, im_func | Victor Sergeyev | 2014-04-24 | 1 | -0/+1 |
| * | python3 compat fixes | Victor Sergeyev | 2014-03-28 | 1 | -8/+11 |
| * | tpool: proxy __enter__, __exit__ fixes BB-158; Thanks to Eric Urban | Sergey Shepelev | 2013-10-02 | 1 | -6/+10 |
| * | tpool: clear up some references that prevent garbage collection | Edward George | 2013-06-04 | 1 | -2/+2 |
| * | tpool: single request queue | Edward George | 2013-06-03 | 1 | -21/+11 |
| * | Added missing global var, and added nose test for set_num_threads | David Ibarra | 2012-11-02 | 1 | -0/+1 |
| * | Added set_num_threads method to set the number of tpool threads programmatica... | David Ibarra | 2012-11-02 | 1 | -0/+3 |
| * | Timeouts get porpagated out of tpool.execute. | Ryan Williams | 2011-04-12 | 1 | -3/+6 |
| * | Clearer behavior in the case of zero-size tpools. | Ryan Williams | 2010-11-06 | 1 | -4/+9 |
| * | Fixing hang when importing a module that makes a tpooled MySQLdb connection, ... | Ryan Williams | 2010-10-08 | 1 | -1/+4 |
| * | Removed superfluous esend method, pyevent skip for yet another tpool test, durr. | Ryan Williams | 2010-10-03 | 1 | -7/+4 |
| * | Greenlet affinity for tpool threads. This means that if you make multiple tp... | Ryan Williams | 2010-09-28 | 1 | -39/+42 |
| * | Adding assertion checking for negative pool size in tpool, per discussion wit... | Ryan Williams | 2010-09-12 | 1 | -0/+1 |
| * | tpool.Proxy now wraps functions. Improved impolementations of equality and i... | Ryan Williams | 2010-06-21 | 1 | -3/+9 |
| * | Named tpool threads, fixed rare race condition where _reqq would be freed bef... | Ryan Williams | 2010-06-02 | 1 | -2/+5 |
| * | Tpool should use original thread-specific Queue instead of possibly-patched one. | Ryan Williams | 2010-06-02 | 1 | -2/+3 |
| * | Fix to get restore tpool on Windows. | Ryan Williams | 2010-05-07 | 1 | -1/+1 |
| * | Reimplemented GreenPipe without using file object. | amajorek | 2010-03-30 | 1 | -5/+2 |
| * | Improved implentation of iterators in tpool; thanks to Slant | Ryan Williams | 2010-03-17 | 1 | -2/+7 |
| * | py3k - corrections for deprecation warnings reported by python2.6 -3. | amajorek | 2010-03-09 | 1 | -1/+3 |
| * | Merge with latest which_linden tip | amajorek | 2010-03-05 | 1 | -1/+3 |
| |\ |
|
| | * | It turns out that __iter__ is one of those magical methods, too. Now tpool s... | Ryan Williams | 2010-03-04 | 1 | -1/+3 |
| * | | py3k - more changes. | amajorek | 2010-03-04 | 1 | -6/+8 |
| |/ |
|
| * | py3k - 3.x file object returned by socket.makefile does not allow writes if i... | amajorek | 2010-02-28 | 1 | -1/+1 |
| * | Merge with latest which_linden tip | amajorek | 2010-02-26 | 1 | -13/+22 |
| |\ |
|
| | * | added comment/suggestion about potential memory leak | Tavis Rudd | 2010-02-24 | 1 | -7/+11 |
| | * | Bug 21: Make tpool reentrant | Chris AtLee | 2010-02-22 | 1 | -6/+11 |
| * | | first draft of making eventlet py3k compatible. | amajorek | 2010-02-26 | 1 | -1/+1 |
| |/ |
|
| * | Improved support for monkeypatching by eliminating race conditions in eventle... | Ryan Williams | 2010-02-17 | 1 | -1/+2 |
| * | Extended tpool's autowrap functionality to use the name of the attribute, whi... | Ryan Williams | 2010-02-06 | 1 | -13/+27 |
| * | Fixed bug in tpool.killall, also another slight bug in the pollhub, and added... | Ryan Williams | 2010-01-18 | 1 | -3/+2 |
| * | Cleaned up link implementation in greenthread, added greenthread test module,... | Ryan Williams | 2010-01-18 | 1 | -1/+1 |
| * | Moved Event to its own module. More cycle-breaking! | Ryan Williams | 2010-01-17 | 1 | -1/+2 |
| * | Removed deprecation warnings from tpool_test.py, more cleanup in killall and ... | Ryan Williams | 2010-01-15 | 1 | -2/+3 |
| * | Converted tpool to use newer APIs, improved cleanup and tests some more. | Ryan Williams | 2010-01-15 | 1 | -6/+11 |
| * | Slightly improved setup/killall, and added debugging to tpool tests. | Ryan Williams | 2010-01-14 | 1 | -5/+9 |
| * | Automated merge with http://bitbucket.org/which_linden/eventlet/ | Ryan Williams | 2010-01-08 | 1 | -8/+7 |
| |\ |
|
| | * | Set tpool to be quiet by default, improved exception raising. | Ryan Williams | 2010-01-05 | 1 | -8/+7 |
| * | | More doc cleanup. Removed timer module from docs because it's an internal de... | Ryan Williams | 2009-12-31 | 1 | -10/+28 |
| |/ |
|
| * | Renamed coros.event to coros.Event to be compatible with PEP-8 some more. | Ryan Williams | 2009-12-16 | 1 | -1/+1 |
| * | Removed previously-deprecated features tcp_server, GreenSSL, erpc, and trap_e... | Ryan Williams | 2009-12-15 | 1 | -6/+0 |
| * | Tpool tests now pass on Windows! | Ryan Williams | 2009-12-07 | 1 | -7/+6 |
| * | Renamed GreenFile to Green_fileobject, better reflecting its purpose. This i... | Ryan Williams | 2009-12-05 | 1 | -1/+1 |
| * | Deprecated erpc like the TODO said | Ryan Williams | 2009-12-04 | 1 | -3/+5 |
| * | Windows compatibility for tpool as requested by rtyler. Not yet tested on Wi... | Ryan Williams | 2009-11-11 | 1 | -10/+28 |
| * | Removed copyright headers from individual files, added LICENSE and AUTHORS fi... | Ryan Williams | 2009-10-03 | 1 | -1/+1 |