summaryrefslogtreecommitdiff
path: root/docs/api.rst
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-06-25 12:01:02 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-06-25 12:01:02 -0500
commitcee691059f0a2805c644a1c3541f70e306225b48 (patch)
tree63ae4c14f3968d8d88c398bb4cbb15d691618202 /docs/api.rst
parent93089108932a5382630243a5691d4cf796b60ec4 (diff)
parent6eb2e3a70147baad1cc2ad3d51c269974da2320f (diff)
downloadflake8-cee691059f0a2805c644a1c3541f70e306225b48.tar.gz
Merge branch 'origin/proposed/3.0' into master3.0.0b1
Diffstat (limited to 'docs/api.rst')
-rw-r--r--docs/api.rst38
1 files changed, 0 insertions, 38 deletions
diff --git a/docs/api.rst b/docs/api.rst
deleted file mode 100644
index fd746f7..0000000
--- a/docs/api.rst
+++ /dev/null
@@ -1,38 +0,0 @@
-==========
-Flake8 API
-==========
-
-.. module:: flake8
-
-flake8.engine
-=============
-
-.. autofunction:: flake8.engine.get_parser
-
-.. autofunction:: flake8.engine.get_style_guide
-
-flake8.hooks
-============
-
-.. autofunction:: flake8.hooks.git_hook
-
-.. autofunction:: flake8.hooks.hg_hook
-
-flake8.main
-===========
-
-.. autofunction:: flake8.main.main
-
-.. autofunction:: flake8.main.check_file
-
-.. autofunction:: flake8.main.check_code
-
-.. autoclass:: flake8.main.Flake8Command
-
-flake8.util
-===========
-
-For AST checkers, this module has the ``iter_child_nodes`` function and
-handles compatibility for all versions of Python between 2.5 and 3.3. The
-function was added to the ``ast`` module in Python 2.6 but is redefined in the
-case where the user is running Python 2.5