pyflakes.py 248 B

1234567
  1. """
  2. Implementation of the command-line I{pyflakes} tool.
  3. """
  4. # For backward compatibility
  5. __all__ = ['check', 'checkPath', 'checkRecursive', 'iterSourceCode', 'main']
  6. from pyflakes.api import check, checkPath, checkRecursive, iterSourceCode, main