diff options
author | Bob Ippolito <bob@redivi.com> | 2013-02-21 15:24:36 -0800 |
---|---|---|
committer | Bob Ippolito <bob@redivi.com> | 2013-02-21 15:34:53 -0800 |
commit | a7039db994cd602ed23ae8b098871cf12f966fe9 (patch) | |
tree | c6fea7c05f51347910bfa471c9e9c187fa9c8e2f /simplejson/tool.py | |
parent | 68aea11176fc7e3f376482dbddccd252836c1b85 (diff) | |
download | simplejson-py-backports.tar.gz |
fix python 2.5 regression in tool and test_toolpy-backports
Diffstat (limited to 'simplejson/tool.py')
-rw-r--r-- | simplejson/tool.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/simplejson/tool.py b/simplejson/tool.py index 35627db..062e8e2 100644 --- a/simplejson/tool.py +++ b/simplejson/tool.py @@ -10,6 +10,7 @@ Usage:: Expecting property name: line 1 column 2 (char 2) """ +from __future__ import with_statement import sys import simplejson as json |