diff options
-rw-r--r-- | tests/test_autodoc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index 96e46196..0025170f 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -155,7 +155,7 @@ def test_format_signature(): inst.args = args inst.retann = retann res = inst.format_signature() - print res + print(res) return res # no signatures for modules @@ -255,7 +255,7 @@ def test_get_doc(): ds = inst.get_doc(encoding) # for testing purposes, concat them and strip the empty line at the end res = sum(ds, [])[:-1] - print res + print(res) return res # objects without docstring |