diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-15 20:03:39 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2018-12-15 21:00:38 +0900 |
commit | fd1dd13a508900b17dc99f9c66a554e2d06bed09 (patch) | |
tree | 34e0c181eb247a61047bf2a319138c00f1d813fa /tests/test_io.py | |
parent | a1e845d964d3c6a4bc60c1676d97c7d24e434919 (diff) | |
download | sphinx-git-fd1dd13a508900b17dc99f9c66a554e2d06bed09.tar.gz |
refactor: Replace six.StringIO by io.StringIO
Diffstat (limited to 'tests/test_io.py')
-rw-r--r-- | tests/test_io.py | 3 |
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 |