summaryrefslogtreecommitdiff
path: root/numpy/core/tests/test_errstate.py
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2009-12-06 12:11:35 +0000
committerPauli Virtanen <pav@iki.fi>2009-12-06 12:11:35 +0000
commitfc5393fd0959afef44baf7c8b690d16157b351a7 (patch)
tree8de2dd1d3c90873cfdf427038ef23601673fc628 /numpy/core/tests/test_errstate.py
parentdf80ae3334f8544aa4c0f76cd2ebcf6852c2c26a (diff)
downloadpython-numpy-fc5393fd0959afef44baf7c8b690d16157b351a7.tar.gz
python-numpy-fc5393fd0959afef44baf7c8b690d16157b351a7.tar.bz2
python-numpy-fc5393fd0959afef44baf7c8b690d16157b351a7.zip
3K: core: fix a few Name and SyntaxErrors in tests
Diffstat (limited to 'numpy/core/tests/test_errstate.py')
-rw-r--r--numpy/core/tests/test_errstate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_errstate.py b/numpy/core/tests/test_errstate.py
index 7302f25e3..2ae936b81 100644
--- a/numpy/core/tests/test_errstate.py
+++ b/numpy/core/tests/test_errstate.py
@@ -43,7 +43,7 @@ class TestErrstate(TestCase):
def test_errcall(self):
def foo(*args):
- print args
+ print(args)
olderrcall = geterrcall()
with errstate(call=foo):
assert(geterrcall() is foo), 'call is not foo'