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:
authorjfbu <jfbu@free.fr>2019-08-01 18:49:24 +0300
committerjfbu <jfbu@free.fr>2019-08-01 18:49:24 +0300
commit685e3fdb49c42b464e09ec955e1033e2a8729fff (patch)
treea7ad90fbd9c2a076575f612caf0d6baa7c4fb555 /sphinx/deprecation.py
parenteeca5ee91d2da817d4ad9e920ad7e4cabd966d08 (diff)
parent5a86a71a8fe6d4e8c3861f755cc9b05b5b10f0cf (diff)
Merge branch '2.0'
Diffstat (limited to 'sphinx/deprecation.py')
-rw-r--r--sphinx/deprecation.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py
index 23efe8ba7..eaaf8096b 100644
--- a/sphinx/deprecation.py
+++ b/sphinx/deprecation.py
@@ -14,7 +14,8 @@ from importlib import import_module
if False:
# For type annotation
- from typing import Any, Dict, Type # NOQA
+ from typing import Any, Dict # NOQA
+ from typing import Type # for python3.5.1
class RemovedInSphinx40Warning(DeprecationWarning):