summaryrefslogtreecommitdiff
path: root/tests/coverage.py
Commit message (Collapse)AuthorAgeFilesLines
* remove unnecessary `list()` wrappers. In some places, I replaced ↵shimizukawa2014-05-251-6/+4
| | | | `iterable.sort()` with `sorted(iterable)`.
* wrap py3 iterators with list() for each places that expect a list object. ↵shimizukawa2014-04-301-5/+5
| | | | refs #1350.
* remove 'six' name except importing line.shimizukawa2014-04-301-2/+2
|
* use six privided functions/classes to support py2/py3 in one source. refs #1350.shimizukawa2014-04-291-7/+3
|
* consistency nitsGeorg Brandl2014-01-221-1/+2
|
* Modernize the code now that Python 2.5 is no longer supportedDmitry Shachnev2014-01-191-35/+30
| | | | | | | | | | | - Use print function instead of print statement; - Use new exception handling; - Use in operator instead of has_key(); - Do not use tuple arguments in functions; - Other miscellaneous improvements. This is based on output of `futurize --stage1`, with some manual corrections.
* Fixed long lines and trailing whitespaces.Tuomas R?s?nen2009-05-051-11/+20
|
* Fix a few stylistic nits.gbrandl2009-04-131-55/+55
|
* Add makefile target for easy test coverage checking.Georg Brandl2009-02-221-0/+1163