diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-07-29 21:27:15 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-07-29 22:58:58 -0600 |
commit | 346489ac0e539ee9db31365cddab7da79d5932ec (patch) | |
tree | 4b89f059608188a44879f6b8f5bcec41263bdd3c /numpy/polynomial/_polybase.py | |
parent | 2243feef3ca8fb8c511b71b26d6bf6114e44c069 (diff) | |
download | numpy-346489ac0e539ee9db31365cddab7da79d5932ec.tar.gz |
STY: PEP8 fixes for files in numpy/polynomial.
The rather lax standards used in scipy were used to identify the
needed style fixups.
Diffstat (limited to 'numpy/polynomial/_polybase.py')
-rw-r--r-- | numpy/polynomial/_polybase.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/polynomial/_polybase.py b/numpy/polynomial/_polybase.py index 23608c74a..234b509aa 100644 --- a/numpy/polynomial/_polybase.py +++ b/numpy/polynomial/_polybase.py @@ -374,7 +374,7 @@ class ABCPolyBase(object): return quo, rem def __pow__(self, other): - coef = self._pow(self.coef, other, maxpower = self.maxpower) + coef = self._pow(self.coef, other, maxpower=self.maxpower) res = self.__class__(coef, self.domain, self.window) return res @@ -721,8 +721,6 @@ class ABCPolyBase(object): y = self(x) return x, y - - @classmethod def fit(cls, x, y, deg, domain=None, rcond=None, full=False, w=None, window=None): |