summaryrefslogtreecommitdiff
path: root/tests/greenthread_test.py
Commit message (Collapse)AuthorAgeFilesLines
* PEP-8 fixesSergey Shepelev2014-08-271-5/+13
|
* tests: deprecated TestCase.assert_() -> assert keywordSergey Shepelev2014-07-161-14/+14
| | | | https://github.com/eventlet/eventlet/issues/101
* python3 compatibilitySergey Shepelev2014-04-241-13/+13
| | | | | | | | | | | | - __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
* pypy compatibilityJakub Stasiak2014-04-151-1/+1
|
* prevent infinite recursion with linking to current greenthreadEdward George2012-12-121-0/+15
|
* Added spawn_after_local and tests, removed test__timers (the source of the ↵Ryan Williams2010-02-131-0/+32
| | | | new tests), deprecated call_after_*
* Added spawn_after, with tests and documentation. Removed dead code in ↵Ryan Williams2010-02-131-8/+35
| | | | timer_test.
* Added assertions about deadness of greenthreads.Ryan Williams2010-01-261-3/+13
|
* Removed api module dependency in pyevent hub.Ryan Williams2010-01-181-1/+2
|
* Cleaned up link implementation in greenthread, added greenthread test ↵Ryan Williams2010-01-181-0/+71
module, fixed kill's implementation to resolve the race condition.