From 1a469d97fdf3cc4c4aa3fa4ea9aef095e10ff9ce Mon Sep 17 00:00:00 2001 From: Robey Pointer Date: Thu, 26 Jan 2006 19:53:42 -0800 Subject: [PATCH] [project @ robey@master-shake.local-20060127035342-a7bb21c598c8136d] (possibly misguided) attempt to reduce paramiko's exports --- paramiko/__init__.py | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/paramiko/__init__.py b/paramiko/__init__.py index 0a312cb..b13f5bd 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -65,10 +65,6 @@ __version_info__ = (1, 5, 2) __license__ = "GNU Lesser General Public License (LGPL)" -import transport, auth_handler, channel, rsakey, dsskey, message -import ssh_exception, file, packet, agent, server, util -import sftp_client, sftp_attr, sftp_handle, sftp_server, sftp_si - from transport import randpool, SecurityOptions, Transport from auth_handler import AuthHandler from channel import Channel, ChannelFile @@ -128,19 +124,4 @@ __all__ = [ 'Transport', 'BufferedFile', 'Agent', 'AgentKey', - 'rsakey', - 'dsskey', - 'pkey', - 'message', - 'transport', - 'sftp', - 'sftp_client', - 'sftp_server', - 'sftp_attr', - 'sftp_file', - 'sftp_si', - 'sftp_handle', - 'server', - 'file', - 'agent', 'util' ]