summaryrefslogtreecommitdiff
path: root/tests/convenience_test.py
Commit message (Collapse)AuthorAgeFilesLines
* Python 3 compat: Improve various bitsJakub Stasiak2014-10-101-2/+2
| | | | | | | | | | | | | | | | | | 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
* PEP-8 fixesSergey Shepelev2014-08-271-2/+2
|
* python3 compatibilitySergey Shepelev2014-04-241-31/+36
| | | | | | | | | | | | - __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 fixesVictor Sergeyev2014-03-281-13/+16
| | | | https://github.com/eventlet/eventlet/pull/59
* Skip SSL tests if SSL is not availableFloris Bruynooghe2012-09-051-1/+2
| | | | | This is particularly useful to not require the external OpenSSL module in order to run the tests on python2.5.
* Patch from Nick Vatamaniuc, fixes #83. Thanks!Ryan Williams2011-04-061-1/+10
|
* Finally adding a wrap_ssl implementation and removing some more test ↵Ryan Williams2010-05-241-0/+19
| | | | references to api and util modules.
* py3k - corrections for deprecation warnings reported by python2.6 -3.amajorek2010-03-091-2/+2
| | | | | | | - 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 changes.amajorek2010-03-041-14/+12
| | | | | | | | - sys.exc_clear does not exist in 3.x - objects are not comparable by default in in 3.x. Timer needs to have __lt__ operator to be used by heapq. - callable is gone in 3.x. - tpool communication pipe changed to exchange binary data. It makes current GreenPipe work in 3.x. It is also faster and have less translation layers. - 3.x socket uses bytes not str class. Used s2b to make tests working on both.
* New module convenience; moved convenience functions in there. Sectioned off ↵Ryan Williams2010-02-251-0/+105
the basic_usage document a little differently to highlight the convenience functions. Wrote a bunch more serve tests.