diff options
author | jquast <contact@jeffquast.com> | 2013-09-22 16:30:28 -0700 |
---|---|---|
committer | jquast <contact@jeffquast.com> | 2013-09-22 16:30:28 -0700 |
commit | 36d6f3b8026eccfce8ae541a659b44dcfa553c87 (patch) | |
tree | 532a899cd323f6d4cad796552f4e3dd53591911b /tests/test_ansi.py | |
parent | 4decac0a645f55160d3faeac83d480c405eda67c (diff) | |
download | pexpect-git-36d6f3b8026eccfce8ae541a659b44dcfa553c87.tar.gz |
more py25 compatibility
not even sure if pexpect can get as far back as python2.5, but its worth a shot.
Diffstat (limited to 'tests/test_ansi.py')
-rwxr-xr-x | tests/test_ansi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_ansi.py b/tests/test_ansi.py index f751f39..450957a 100755 --- a/tests/test_ansi.py +++ b/tests/test_ansi.py @@ -18,7 +18,7 @@ PEXPECT LICENSE OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ''' - +from __future__ import with_statement # bring 'with' stmt to py25 from pexpect import ANSI import unittest import PexpectTestCase |