diff options
author | Georg Brandl <georg@python.org> | 2014-11-07 15:19:36 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-11-07 15:19:36 +0100 |
commit | 4f4d8688d5178bfbba12b38ceb5659aa8f28fb8c (patch) | |
tree | d0d25f31e3d738c3b4bfe7f60a45da9d941a9753 /tests/test_autodoc.py | |
parent | bbd315b82e65b9ebdf7523d70e2c51139e61a51e (diff) | |
download | sphinx-git-4f4d8688d5178bfbba12b38ceb5659aa8f28fb8c.tar.gz |
Py3 fix.
Diffstat (limited to 'tests/test_autodoc.py')
-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 96e46196a..0025170f2 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 |