Minor fixes to patch.

This commit is contained in:
Stefan van der Walt
2009-10-01 15:18:43 +02:00
parent e003726de2
commit 49859255cc
2 changed files with 2 additions and 2 deletions
@@ -6,7 +6,7 @@
:license: modified BSD
"""
__all__ = ["frt"]
__all__ = ["frt2", "ifrt2"]
__docformat__ = "restructuredtext en"
import numpy as np
@@ -9,7 +9,7 @@ def test_frt():
import sympy.ntheory as sn
assert sn.isprime(SIZE) == True
except ImportError:
sn = False
pass
# Generate a test image
L = np.tri(SIZE, dtype=np.int32) + np.tri(SIZE, dtype=np.int32)[::-1]