diff options
author | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2019-08-26 12:09:42 +0000 |
---|---|---|
committer | milde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2019-08-26 12:09:42 +0000 |
commit | fae91e45bdcf42592d78ae0f8035b94fa6dda70c (patch) | |
tree | c877c672a8123662a1dcce1e6ac84fa36a588407 /docutils/test/test_utils.py | |
parent | 08af9b25a2e33f4c70bda60caa8a8ac53a36ee86 (diff) | |
download | docutils-fae91e45bdcf42592d78ae0f8035b94fa6dda70c.tar.gz |
Drop support for Python 3.3
This doesn't involve a whole lot of changes, but references to Python
3.3 (plus some to the already removed Python 2.6) are removed and
'setup.py' is updated as necessary.
Signed-off-by: Stephen Finucane <stephen@that.guru>
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@8338 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/test/test_utils.py')
-rwxr-xr-x | docutils/test/test_utils.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/docutils/test/test_utils.py b/docutils/test/test_utils.py index 07b62e11a..1be74aad5 100755 --- a/docutils/test/test_utils.py +++ b/docutils/test/test_utils.py @@ -9,14 +9,11 @@ Test module for utils/__init__.py. """ -import unittest -import sys +from io import StringIO import os +import unittest + from DocutilsTestSupport import docutils, utils, nodes -try: - from io import StringIO -except ImportError: # io is new in Python 2.6 - from StringIO import StringIO class ReporterTests(unittest.TestCase): |