summaryrefslogtreecommitdiff
path: root/tests/env_test.py
Commit message (Collapse)AuthorAgeFilesLines
* Python 3 compat: Improve various bitsJakub Stasiak2014-10-101-0/+1
| | | | | | | | | | | | | | | | | | This includes changes to WSGI, websocket, bytes/str/unicode handling, SSL, backdoor, greenio and tests. Some comments and conditionals (PY2/PY3) were added for clarity GH issues: Closes #106 Closes #111 Closes #118 Closes #141 Incidentally should also close #135 (reopen if didn't) cc #6
* tests: deprecated TestCase.assert_() -> assert keywordSergey Shepelev2014-07-161-3/+2
| | | | https://github.com/eventlet/eventlet/issues/101
* PEP-8 fixes, tox runs pep8 checkSergey Shepelev2014-04-231-0/+2
| | | | | For now, pep8 check is only run for some files known to be clean, we should clean the rest and enable pep8 check for all files then.
* python3 compatibility: print functionSergey Shepelev2014-04-231-5/+4
|
* python3 compat fixesVictor Sergeyev2014-03-281-1/+1
| | | | https://github.com/eventlet/eventlet/pull/59
* 2.4 compatibility.Ryan Williams2011-01-231-1/+1
|
* Clearer behavior in the case of zero-size tpools.Ryan Williams2010-11-061-0/+19
|
* Fixed env_test stomping on os.environBen Ford2010-10-121-8/+18
|
* Cleaned up tpool-related tests a bit.Ryan Williams2010-09-291-4/+7
|
* Greenlet affinity for tpool threads. This means that if you make multiple ↵Ryan Williams2010-09-281-5/+6
| | | | tpool calls with the same greenthread, they will all go through the same real thread.
* Adding assertion checking for negative pool size in tpool, per discussion ↵Ryan Williams2010-09-121-0/+21
| | | | with rtyler. Also a test because I am a test nerd.
* Sleeping in env_test for longer because thread startup is so very expensive ↵Ryan Williams2010-07-251-1/+1
| | | | on some platforms.
* Your machine is so slow, your mom could count up to 0.04 before it could.Ryan Williams2010-06-101-1/+1
|
* Skip skip skip pyevent.Ryan Williams2010-06-101-1/+3
|
* Race condition fix in patcher, added a bit more sleep to the env test so ↵Ryan Williams2010-06-101-2/+4
| | | | slow machines have a better chance of succeeding.
* Documented the environment variables (thereby fixing #15). Improved the ↵Ryan Williams2010-06-101-0/+55
implementation of tpooled dns in eventlet.green.socket.