diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-12 02:50:43 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-12 02:50:43 +0900 |
commit | 279e547860ea68e3c357f55e608afec682a1f961 (patch) | |
tree | dc08e85ab0210538e30b5b801bf9d80ab49bfb3f /tests/test_domain_c.py | |
parent | 859b5fcea71f8d4f46e0ef3726e68df54bfbc3b7 (diff) | |
parent | 64fb1e56242d93ee0e8c317ab9e7643242b99658 (diff) | |
download | sphinx-git-279e547860ea68e3c357f55e608afec682a1f961.tar.gz |
Merge branch '3.x'
Diffstat (limited to 'tests/test_domain_c.py')
-rw-r--r-- | tests/test_domain_c.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/test_domain_c.py b/tests/test_domain_c.py index f1014f6b8..57a7c49e6 100644 --- a/tests/test_domain_c.py +++ b/tests/test_domain_c.py @@ -7,14 +7,13 @@ :copyright: Copyright 2007-2020 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ -import pytest - from xml.etree import ElementTree +import pytest + from sphinx import addnodes from sphinx.addnodes import desc -from sphinx.domains.c import DefinitionParser, DefinitionError -from sphinx.domains.c import _max_id, _id_prefix, Symbol +from sphinx.domains.c import DefinitionError, DefinitionParser, Symbol, _id_prefix, _max_id from sphinx.testing import restructuredtext from sphinx.testing.util import assert_node |