summaryrefslogtreecommitdiff
path: root/pyflakes/scripts/pyflakes.py
blob: 2d6f6aa1fc9a3c6658d067dacce7300948d66126 (plain)
1
2
3
4
5
6
7
"""
Implementation of the command-line I{pyflakes} tool.
"""

# For backward compatibility
__all__ = ['check', 'checkPath', 'checkRecursive', 'iterSourceCode', 'main']
from pyflakes.api import check, checkPath, checkRecursive, iterSourceCode, main