summaryrefslogtreecommitdiff
path: root/pyflakes/__init__.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2013-03-30 10:28:15 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2013-03-30 10:28:15 +0100
commit72449cccd9a1cadd6f41718cbbd6c38bd1cf2709 (patch)
treebe6c10b0266bb86ede53709839306ce69df0e2c7 /pyflakes/__init__.py
parent99df08484fc800a53f6af7814390a210da448346 (diff)
downloadpyflakes-72449cccd9a1cadd6f41718cbbd6c38bd1cf2709.tar.gz
Drop support of `python -m pyflakes` on Python 2.5, because Python 2.6 does not have this feature at all
Diffstat (limited to 'pyflakes/__init__.py')
-rw-r--r--pyflakes/__init__.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py
index eeed3e7..21ab09a 100644
--- a/pyflakes/__init__.py
+++ b/pyflakes/__init__.py
@@ -1,8 +1,2 @@
__version__ = '0.6.2a0'
-
-
-# Python 2.5 support for: python -m pyflakes
-if __name__ == '__main__':
- from pyflakes.api import main
- main(prog='pyflakes')