Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-07 04:45:39 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-03-07 13:36:41 +0300
commit6d4fefebf4ecee4416da016d8e647298003fb57a (patch)
treea0f8dedd36b9562a248bcf8bc8eab91d09136a58 /sphinx/util/logging.py
parent3e0618ba3a84c7db51813cab43779d11c5fe7802 (diff)
Deprecate codes for python 3.5
Diffstat (limited to 'sphinx/util/logging.py')
-rw-r--r--sphinx/util/logging.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py
index fb2ec2900..266e2b0a0 100644
--- a/sphinx/util/logging.py
+++ b/sphinx/util/logging.py
@@ -12,7 +12,7 @@ import logging
import logging.handlers
from collections import defaultdict
from contextlib import contextmanager
-from typing import Any, Dict, Generator, IO, List, Tuple, Union
+from typing import Any, Dict, Generator, IO, List, Tuple, Type, Union
from docutils import nodes
from docutils.nodes import Node
@@ -23,7 +23,6 @@ from sphinx.util.console import colorize
if False:
# For type annotation
- from typing import Type # for python3.5.1
from sphinx.application import Sphinx