summaryrefslogtreecommitdiff
path: root/epylint.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-12-15 19:14:21 +0100
committerEmile Anclin <emile.anclin@logilab.fr>2010-12-15 19:14:21 +0100
commit85f4f8a3f8671bbf613b1378835140a5aa0ca49b (patch)
tree7242660ab7638846d61a09f4a741656c4916236b /epylint.py
parent94756c3a3f4ad64e61acca049a01c6e4b6de4530 (diff)
downloadpylint-git-85f4f8a3f8671bbf613b1378835140a5aa0ca49b.tar.gz
doc: add manpages, update documentation about the project
mention and document a bit epylint, pylint-gui and symilar gui.py : fix line length debian/control: Suggests instead of Recommends python-tk
Diffstat (limited to 'epylint.py')
-rwxr-xr-xepylint.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/epylint.py b/epylint.py
index 250e2205e..fcda88de3 100755
--- a/epylint.py
+++ b/epylint.py
@@ -4,9 +4,9 @@
This script is for integration with emacs and is compatible with flymake mode.
-This version of epylint traverses out of packages before invoking pylint. This avoids the reporting
-of errors that occur when a module within package uses a full package import path to get hold of
-another module within this package.
+epylint walks out of python packages before invoking pylint. This avoids
+reporting import errors that occur when a module within a package uses the
+absolute import path to get another module within this package.
For example:
- Suppose a package is structured as
@@ -23,8 +23,8 @@ For example:
pylint a/c/y.py
- - As this script will be invoked by emacs within the directory of the file we are checking
- we need to traverse down out of it to avoid these false positives.
+ - As this script will be invoked by emacs within the directory of the file
+ we are checking we need to go out of it to avoid these false positives.
You may also use py_run to run pylint with desired options and get back (or not) its output.
@@ -94,7 +94,7 @@ def Run():
def py_run(command_options='', return_std=False, stdout=None, stderr=None,
- script='pylint'):
+ script='epylint'):
"""Run pylint from python (needs Python >= 2.4).
``command_options`` is a string containing ``pylint`` command line options;