diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-21 14:36:34 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-21 14:36:34 +0300 |
commit | 8f9157e6d0649333f549afaed0d79aecfe133aeb (patch) | |
tree | 2276cfd1609ef59b704635300074d2554142ad08 | |
parent | c6ceb19322a64f8fd7158343861478c0538deabd (diff) | |
download | simplejson-8f9157e6d0649333f549afaed0d79aecfe133aeb.tar.gz |
Make test_speedups compatible with Python 2.5.
-rw-r--r-- | simplejson/tests/test_speedups.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/simplejson/tests/test_speedups.py b/simplejson/tests/test_speedups.py index 25e76dc..f8b77d9 100644 --- a/simplejson/tests/test_speedups.py +++ b/simplejson/tests/test_speedups.py @@ -1,3 +1,5 @@ +from __future__ import with_statement + import sys import unittest from unittest import TestCase |