summaryrefslogtreecommitdiff
path: root/tests/test_io.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-12-15 20:03:39 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-12-15 21:00:38 +0900
commitfd1dd13a508900b17dc99f9c66a554e2d06bed09 (patch)
tree34e0c181eb247a61047bf2a319138c00f1d813fa /tests/test_io.py
parenta1e845d964d3c6a4bc60c1676d97c7d24e434919 (diff)
downloadsphinx-git-fd1dd13a508900b17dc99f9c66a554e2d06bed09.tar.gz
refactor: Replace six.StringIO by io.StringIO
Diffstat (limited to 'tests/test_io.py')
-rw-r--r--tests/test_io.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_io.py b/tests/test_io.py
index 1c8fee86b..2e81035dc 100644
--- a/tests/test_io.py
+++ b/tests/test_io.py
@@ -9,8 +9,9 @@
:license: BSD, see LICENSE for details.
"""
+from io import StringIO
+
import pytest
-from six import StringIO
from sphinx.io import SphinxRSTFileInput