diff options
author | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2014-04-30 21:30:46 +0900 |
---|---|---|
committer | Takayuki Shimizukawa <shimizukawa@gmail.com> | 2014-04-30 21:30:46 +0900 |
commit | 1e5806269243d5d10bb4f1421b9b5448963e704a (patch) | |
tree | 10eb2c9270c8dc73156fafdcdb4c6d04fe441f44 /tests/test_autodoc.py | |
parent | f31d9113ffc1c58bfcc47f2a29439102b62801fc (diff) | |
download | sphinx-git-1e5806269243d5d10bb4f1421b9b5448963e704a.tar.gz |
remove 'six' name except importing line.
Diffstat (limited to 'tests/test_autodoc.py')
-rw-r--r-- | tests/test_autodoc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index 7b6c017e3..b85aee78e 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -14,7 +14,7 @@ from util import TestApp, Struct, raises from nose.tools import with_setup -import six +from six import StringIO from docutils.statemachine import ViewList from sphinx.ext.autodoc import AutoDirective, add_documenter, \ @@ -809,7 +809,7 @@ class Class(Base): u"""should be documented as well - süß""" # initialized to any class imported from another module - mdocattr = six.StringIO() + mdocattr = StringIO() """should be documented as well - süß""" roger = _funky_classmethod("roger", 2, 3, 4) |