summaryrefslogtreecommitdiffhomepage
path: root/tests/test_sftp.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_sftp.py')
-rwxr-xr-xtests/test_sftp.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py
index 39c8aa83..7ce3e68c 100755
--- a/tests/test_sftp.py
+++ b/tests/test_sftp.py
@@ -192,6 +192,10 @@ class SFTPTest (unittest.TestCase):
"""
verify that an opened file can be used as a context manager
"""
+ major, minor, micro, releaselevel, serial = sys.version_info
+ if (major, minor) <= (2, 5):
+ return
+
try:
with sftp.open(FOLDER + '/duck.txt', 'w') as f:
f.write(ARTICLE)