summaryrefslogtreecommitdiff
path: root/jwt/api_jwt.py
diff options
context:
space:
mode:
authorkreutz-hs <43569762+kreutz-hs@users.noreply.github.com>2018-11-02 12:24:18 +0100
committerJosé Padilla <jpadilla@webapplicate.com>2018-11-02 07:24:18 -0400
commit2122f94432d160a23e79a4771c05d71132dc6db9 (patch)
treec0eac2884d684aff101142cc66cac0d4e3c81e17 /jwt/api_jwt.py
parent72fb76e46152aa5ed92c87143809ddd677c4f12d (diff)
downloadpyjwt-2122f94432d160a23e79a4771c05d71132dc6db9.tar.gz
Support Python 3.7 (#375)
* Import collection ABC's from correct module They were moved into collections.abc in 3.3 and will be deprecated from collections in 3.8.
Diffstat (limited to 'jwt/api_jwt.py')
-rw-r--r--jwt/api_jwt.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/jwt/api_jwt.py b/jwt/api_jwt.py
index 6caeecf..0836ec0 100644
--- a/jwt/api_jwt.py
+++ b/jwt/api_jwt.py
@@ -1,9 +1,13 @@
import json
import warnings
from calendar import timegm
-from collections import Iterable, Mapping
from datetime import datetime, timedelta
try:
+ # Importing ABCs from collections will be removed in PY3.8
+ from collections.abc import Iterable, Mapping
+except ImportError:
+ from collections import Iterable, Mapping
+try:
# import required by mypy to perform type checking, not used for normal execution
from typing import Callable, Dict, List, Optional, Union # NOQA
except ImportError: