diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-07-29 21:38:28 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-07-29 22:58:58 -0600 |
commit | daf9335f0a2cae53735dd12061e6b9c396dc57b1 (patch) | |
tree | 450a7ce79b5b1bec258be2f83f9862c2c78403f0 /numpy/polynomial/laguerre.py | |
parent | 346489ac0e539ee9db31365cddab7da79d5932ec (diff) | |
download | numpy-daf9335f0a2cae53735dd12061e6b9c396dc57b1.tar.gz |
MAINT: Remove unused variables and imports in numpy/polynomial/*.py.
Detected by pyflakes.
Diffstat (limited to 'numpy/polynomial/laguerre.py')
-rw-r--r-- | numpy/polynomial/laguerre.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/numpy/polynomial/laguerre.py b/numpy/polynomial/laguerre.py index 1b52f4398..8d2705d5d 100644 --- a/numpy/polynomial/laguerre.py +++ b/numpy/polynomial/laguerre.py @@ -1566,7 +1566,6 @@ def lagcompanion(c): .. versionadded::1.7.0 """ - accprod = np.multiply.accumulate # c is a trimmed copy [c] = pu.as_series([c]) if len(c) < 2: |