Merge pull request #5780 from tk0miya/refactor_six.zip_longest

refactor: Replace six.moves.zip_longest by itertools.zip_longest
This commit is contained in:
Takeshi KOMIYA 2018-12-15 20:57:26 +09:00 committed by GitHub
commit 66cd2aa33d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,13 +11,11 @@
"""
import pickle
import warnings
from itertools import product
from itertools import product, zip_longest
from operator import itemgetter
from os import path
from uuid import uuid4
from six.moves import zip_longest
from sphinx.deprecation import RemovedInSphinx30Warning
from sphinx.transforms import SphinxTransform