diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-03-07 16:17:19 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-03-07 16:17:19 -0800 |
commit | b4cd4bea1d5616dac5bc9c8a9c320164667d1533 (patch) | |
tree | c54e56428f7d985473eae06260023fd26c639f3a /tests/test_sftp.py | |
parent | b29d018e367b9f19cf640bfa02080d8743b9d151 (diff) |
Start in on star import eradication
Diffstat (limited to 'tests/test_sftp.py')
-rwxr-xr-x | tests/test_sftp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_sftp.py b/tests/test_sftp.py index f8fab1ce..82422019 100755 --- a/tests/test_sftp.py +++ b/tests/test_sftp.py @@ -25,13 +25,14 @@ do test file operations in (so no existing files will be harmed). from binascii import hexlify import os +import sys import warnings import threading import unittest from tempfile import mkstemp import paramiko -from paramiko.common import * +from paramiko.common import PY2, b, u, StringIO, o777, o600 from tests.stub_sftp import StubServer, StubSFTPServer from tests.loop import LoopSocket from tests.util import test_path |