diff options
author | Georg Brandl <georg@python.org> | 2010-01-17 17:35:12 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-01-17 17:35:12 +0100 |
commit | c5d67b03219f3643ea9e250a7cd3cafd5aaf2efb (patch) | |
tree | ee780928dd0b074cc00ce45370ae79a9908749ac /sphinx/ext/autodoc.py | |
parent | 744a519c9234910eacd638abed7c0a947344f464 (diff) | |
download | sphinx-git-c5d67b03219f3643ea9e250a7cd3cafd5aaf2efb.tar.gz |
Refactor util package.
Diffstat (limited to 'sphinx/ext/autodoc.py')
-rw-r--r-- | sphinx/ext/autodoc.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/ext/autodoc.py b/sphinx/ext/autodoc.py index cf38dbb8a..d3d19dcf5 100644 --- a/sphinx/ext/autodoc.py +++ b/sphinx/ext/autodoc.py @@ -20,9 +20,10 @@ from docutils import nodes from docutils.utils import assemble_option_dict from docutils.statemachine import ViewList -from sphinx.util import rpartition, nested_parse_with_titles, force_decode +from sphinx.util import rpartition, force_decode from sphinx.pycode import ModuleAnalyzer, PycodeError from sphinx.application import ExtensionError +from sphinx.util.nodes import nested_parse_with_titles from sphinx.util.compat import Directive from sphinx.util.inspect import isdescriptor, safe_getmembers, safe_getattr from sphinx.util.docstrings import prepare_docstring |