summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandy <andy@whiskeymedia.com>2013-06-05 22:16:42 -0400
committerandy <andy@whiskeymedia.com>2013-06-05 22:16:42 -0400
commita683d4d362a8806c0eb405c724143dede5247ad7 (patch)
tree34edc7c35e7b4f152f7d2db0f9cb4ed9d73b35b5
parent97de031fb67d691b10a15b8c176823b01c1299fe (diff)
downloadredis-py-a683d4d362a8806c0eb405c724143dede5247ad7.tar.gz
python 2.5 compat
-rw-r--r--tests/test_commands.py1
-rw-r--r--tests/test_connection_pool.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_commands.py b/tests/test_commands.py
index 117d7ff..f981af3 100644
--- a/tests/test_commands.py
+++ b/tests/test_commands.py
@@ -1,3 +1,4 @@
+from __future__ import with_statement
import binascii
import datetime
import pytest
diff --git a/tests/test_connection_pool.py b/tests/test_connection_pool.py
index ae256aa..e0ac62f 100644
--- a/tests/test_connection_pool.py
+++ b/tests/test_connection_pool.py
@@ -1,3 +1,4 @@
+from __future__ import with_statement
import os
import pytest
import redis