diff options
| author | Stefan Kögl <stefan@skoegl.net> | 2011-06-23 17:40:32 +0200 |
|---|---|---|
| committer | Stefan Kögl <stefan@skoegl.net> | 2011-06-23 17:40:32 +0200 |
| commit | 033c5f6ac9778c6c968578cc348889eb58d30be8 (patch) | |
| tree | 5e9079878c75a7c6da43ed8cc12cee06f6aa719f | |
| parent | 02d1592cb2e5f10e190f204caff8d71444632d41 (diff) | |
| download | python-json-patch-0.1.tar.gz | |
compatibility with Python 2.6+ and Python 3.xv0.1
| -rwxr-xr-x | tests.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,6 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- +from __future__ import print_function import doctest import unittest import sys @@ -37,7 +38,7 @@ if coverage is not None: coverage.erase() if coverage is None: - print >>sys.stderr, """ + print(""" No coverage reporting done (Python module "coverage" is missing) Please install the python-coverage package to get coverage reporting. - """ + """, file=sys.stderr) |
