summaryrefslogtreecommitdiff
path: root/pylint/epylint.py
diff options
context:
space:
mode:
authorRadostin Stoyanov <rst0git@users.noreply.github.com>2018-03-02 17:38:20 +0000
committerClaudiu Popa <pcmanticore@gmail.com>2018-03-03 20:44:39 +0100
commitd6b9b8f36a2ebd84f7bed61d2778ff0792201179 (patch)
tree0c99463c64ff783000d2269b4b7a6ce4d98c8120 /pylint/epylint.py
parentf7d0bc87bca63f7aad6fc46b6c8731e376e4fbe3 (diff)
downloadpylint-git-d6b9b8f36a2ebd84f7bed61d2778ff0792201179.tar.gz
epylint: Remove incorrect docstring
This example has been introduced in #5821. However, it does not work any more. Closes #1870
Diffstat (limited to 'pylint/epylint.py')
-rwxr-xr-xpylint/epylint.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/pylint/epylint.py b/pylint/epylint.py
index 29557d05b..4f7c2ae77 100755
--- a/pylint/epylint.py
+++ b/pylint/epylint.py
@@ -134,12 +134,6 @@ def py_run(command_options='', return_std=False, stdout=None, stderr=None):
containing standard output and error related to created process,
as follows: ``(stdout, stderr)``.
- A trivial usage could be as follows:
- >>> py_run( '--version')
- No config file found, using default configuration
- pylint 0.18.1,
- ...
-
To silently run Pylint on a module, and get its standard output and error:
>>> (pylint_stdout, pylint_stderr) = py_run( 'module_name.py', True)
"""