Skip to content

Commit

Permalink
STY: signal: big PEP8 cleanup, plus a BUG FIX: there was a comma miss…
Browse files Browse the repository at this point in the history
…ing in the list of coefficients for N=11 in the besselap function in filter_design.py.
  • Loading branch information
WarrenWeckesser committed May 30, 2011
1 parent 75caf27 commit e96fa5b
Show file tree
Hide file tree
Showing 11 changed files with 864 additions and 767 deletions.
2 changes: 1 addition & 1 deletion scipy/signal/__init__.py
Expand Up @@ -20,6 +20,6 @@
from spectral import *
from wavelets import *

__all__ = filter(lambda s:not s.startswith('_'),dir())
__all__ = filter(lambda s: not s.startswith('_'), dir())
from numpy.testing import Tester
test = Tester().test

0 comments on commit e96fa5b

Please sign in to comment.