diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-01-04 01:47:43 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-01-14 19:44:12 +0900 |
commit | 9c52b4ed6c7dafd7e2d2e156763a06e428091b0c (patch) | |
tree | b07e062e1b8fbf64ed9545132cfd8a2f2b0becca /sphinx/util/websupport.py | |
parent | 0081482eb7b65cb286afd6ed1c466990545226be (diff) | |
download | sphinx-git-9c52b4ed6c7dafd7e2d2e156763a06e428091b0c.tar.gz |
Drop dependency: sphinxcontrib-websupport
Diffstat (limited to 'sphinx/util/websupport.py')
-rw-r--r-- | sphinx/util/websupport.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sphinx/util/websupport.py b/sphinx/util/websupport.py deleted file mode 100644 index dff9093d7..000000000 --- a/sphinx/util/websupport.py +++ /dev/null @@ -1,16 +0,0 @@ -""" - sphinx.util.websupport - ~~~~~~~~~~~~~~~~~~~~~~ - - :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -try: - from sphinxcontrib.websupport.utils import is_commentable # NOQA -except ImportError: - from docutils import nodes # NOQA - - def is_commentable(node): - # type: (nodes.Node) -> bool - raise RuntimeError |