summaryrefslogtreecommitdiff
path: root/simplejson/tests/test_namedtuple.py
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2012-12-30 19:55:51 -0800
committerBob Ippolito <bob@redivi.com>2012-12-30 19:55:51 -0800
commit02e24f4f856b065aa31d79d4726ce6668a20779e (patch)
tree28fb30571a6bdb0e6b032ae62d5a92b3edf52791 /simplejson/tests/test_namedtuple.py
parent57d980277f8d1d6324904edd43e1a730572b64b6 (diff)
parentdd76051b3f65625635d39277daf60135215c9d10 (diff)
downloadsimplejson-02e24f4f856b065aa31d79d4726ce6668a20779e.tar.gz
Merge branch 'py3'v3.0.0
Diffstat (limited to 'simplejson/tests/test_namedtuple.py')
-rw-r--r--simplejson/tests/test_namedtuple.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/simplejson/tests/test_namedtuple.py b/simplejson/tests/test_namedtuple.py
index 54a9a12..4387894 100644
--- a/simplejson/tests/test_namedtuple.py
+++ b/simplejson/tests/test_namedtuple.py
@@ -1,6 +1,7 @@
+from __future__ import absolute_import
import unittest
import simplejson as json
-from StringIO import StringIO
+from simplejson.compat import StringIO
try:
from collections import namedtuple