diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2016-07-07 17:04:13 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-07-07 17:04:13 +0100 |
commit | 579ccd51bea9f0e174fa24d8ad5b18032e622e9c (patch) | |
tree | 47617ae78ba996a2edb8611eedb4ecadf3420a25 | |
parent | 44f0065f7cd7224c917573fc7fc7a10c7d91e799 (diff) | |
download | astroid-git-579ccd51bea9f0e174fa24d8ad5b18032e622e9c.tar.gz |
Remove automodule, we cannot use it due to astroid's heavy bootstrapping of builtins.
-rw-r--r-- | doc/extending.rst | 4 | ||||
-rw-r--r-- | doc/inference.rst | 13 |
2 files changed, 0 insertions, 17 deletions
diff --git a/doc/extending.rst b/doc/extending.rst index 2850c626..83ffe512 100644 --- a/doc/extending.rst +++ b/doc/extending.rst @@ -15,17 +15,13 @@ subdirectory, which are taken from the `pylint-brain`_ project. Transformation functions are registered using the `register_transform` method of the Astroid manager: -.. automethod:: astroid.manager.AstroidManager.register_transform To add filtering based on the `as_string` representation of the node in addition to the type, the :class:`astroid.AsStringRegexpPredicate` predicate object can be used. -.. autoclass:: astroid.AsStringRegexpPredicate - Last but not least, the :func:`inference_tip` function is there to register a custom inference function. -.. autofunction:: astroid.inference_tip .. _`pylint-brain`: https://bitbucket.org/logilab/pylint-brain diff --git a/doc/inference.rst b/doc/inference.rst index e803a1dd..1aa96ac6 100644 --- a/doc/inference.rst +++ b/doc/inference.rst @@ -72,16 +72,3 @@ on several more global objects, mainly : .. todo:: Write something about :class:`Scope` objects and :meth:`NodeNG.lookup` method. - -API documentation -================= - -Here is the annotated API documentation extracted from the source code -of the :mod:`inference`. - -.. todo:: actually annotate the doc to structure its approach - -.. automodule:: astroid.inference - :members: - :undoc-members: -.. :special-members: in autodoc/sphinx 1.1 |