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

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