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>2018-09-24 03:02:28 +0300
committerGitHub <noreply@github.com>2018-09-24 03:02:28 +0300
commite8d5e47c815b64492effe584ac6937efa751a8f3 (patch)
tree2c8f667d42b5fc62afbef5ff98a6128782a26af0 /sphinx/versioning.py
parent895d41e659e2a1b1718621c6d532b24c990016a7 (diff)
parent02d06bdaf02957bcaca2c63a8906ffef7f7e01ee (diff)
Merge pull request #5478 from jdufresne/moves
Remove uses of six.moves that did not cause any type errors
Diffstat (limited to 'sphinx/versioning.py')
-rw-r--r--sphinx/versioning.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/versioning.py b/sphinx/versioning.py
index 9ad65a971..e65c9fd8f 100644
--- a/sphinx/versioning.py
+++ b/sphinx/versioning.py
@@ -9,13 +9,13 @@
:copyright: Copyright 2007-2018 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
+import pickle
import warnings
from itertools import product
from operator import itemgetter
from os import path
from uuid import uuid4
-from six.moves import cPickle as pickle
from six.moves import range, zip_longest
from sphinx.deprecation import RemovedInSphinx30Warning