summaryrefslogtreecommitdiff
path: root/sphinx/util/jsdump.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-02-14 22:57:20 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-02-14 22:57:38 +0900
commita073e17537c2aacaac305feadea58d4473ec97f4 (patch)
treeb3ef3d0ad15132c4e5ae5064f9c7b678fbcad120 /sphinx/util/jsdump.py
parent91807f882dafbd6185b8d88c0bf4cbf97cf520fb (diff)
downloadsphinx-git-a073e17537c2aacaac305feadea58d4473ec97f4.tar.gz
Use typing.TYPE_CHECKING for typehints
Diffstat (limited to 'sphinx/util/jsdump.py')
-rw-r--r--sphinx/util/jsdump.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/sphinx/util/jsdump.py b/sphinx/util/jsdump.py
index 6776691cf..2226475f6 100644
--- a/sphinx/util/jsdump.py
+++ b/sphinx/util/jsdump.py
@@ -9,15 +9,16 @@
:copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
+from __future__ import absolute_import
import re
+from typing import TYPE_CHECKING
from six import iteritems, integer_types, string_types
from sphinx.util.pycompat import u
-if False:
- # For type annotation
+if TYPE_CHECKING:
from typing import Any, Dict, IO, List, Match, Union # NOQA
_str_re = re.compile(r'"(\\\\|\\"|[^"])*"')