introduce the six module and reduce sphinx.util.pycompat implementation. refs #1350.

This commit is contained in:
Takayuki Shimizukawa
2014-04-29 11:46:47 +09:00
parent 1e4b390b22
commit 68290a266c
38 changed files with 142 additions and 137 deletions

View File

@@ -11,12 +11,13 @@
from __future__ import print_function
import sys
import StringIO
import six
from util import with_app
status = StringIO.StringIO()
status = six.StringIO()
cleanup_called = 0
@with_app(buildername='doctest', status=status)