diff options
author | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2014-04-29 11:46:47 +0900 |
---|---|---|
committer | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2014-04-29 11:46:47 +0900 |
commit | 68290a266cea33cf0b60bed425b5e89d1032e7d1 (patch) | |
tree | 629a54150044a6d588bcf8e740e13d65c50178ee /tests/test_docutilsconf.py | |
parent | 1e4b390b226c856d8c80d1d9857696b7fbcd2580 (diff) | |
download | sphinx-git-68290a266cea33cf0b60bed425b5e89d1032e7d1.tar.gz |
introduce the six module and reduce sphinx.util.pycompat implementation. refs #1350.
Diffstat (limited to 'tests/test_docutilsconf.py')
-rw-r--r-- | tests/test_docutilsconf.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/test_docutilsconf.py b/tests/test_docutilsconf.py index fcfef13b3..edd72be8a 100644 --- a/tests/test_docutilsconf.py +++ b/tests/test_docutilsconf.py @@ -11,13 +11,14 @@ import os import re -from StringIO import StringIO from functools import wraps +import six + from util import test_roots, TestApp -html_warnfile = StringIO() +html_warnfile = six.StringIO() root = test_roots / 'test-docutilsconf' |