summaryrefslogtreecommitdiff
path: root/scipy/base/polynomial.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-12-30 01:59:33 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-12-30 01:59:33 +0000
commit12fb5f95f206627c4f4c4e11b963527850df70f4 (patch)
tree9ef3b6c85a3412142e69cb734e78e3f8921af0f8 /scipy/base/polynomial.py
parentac853f7e345d949a6be1a7e6a749ce31c4b0d7f9 (diff)
downloadnumpy-12fb5f95f206627c4f4c4e11b963527850df70f4.tar.gz
Fixed problems revealed by pychecker.
Diffstat (limited to 'scipy/base/polynomial.py')
-rw-r--r--scipy/base/polynomial.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/scipy/base/polynomial.py b/scipy/base/polynomial.py
index 0cd8519ff..df7013bab 100644
--- a/scipy/base/polynomial.py
+++ b/scipy/base/polynomial.py
@@ -401,9 +401,6 @@ class poly1d(object):
else:
return NX.asarray(self.coeffs)
- def __coerce__(self, other):
- return None
-
def __repr__(self):
vals = repr(self.coeffs)
vals = vals[6:-1]