Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!feeder.news-service.com!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.013 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'received:209.85.160.174': 0.09; 'received:mail-gy0-f174.google.com': 0.09; 'ssh': 0.09; '25,': 0.12; 'wrote:': 0.15; 'class:': 0.16; 'cc:addr:python- list': 0.16; 'mon,': 0.16; 'pm,': 0.16; 'cheers,': 0.19; 'cc:2**0': 0.21; 'cc:no real name:2**0': 0.22; 'header:In-Reply- To:1': 0.22; 'message-id:@mail.gmail.com': 0.28; 'cc:addr:python.org': 0.30; 'class': 0.31; 'chris': 0.32; 'received:209.85.160': 0.34; 'using': 0.37; 'received:google.com': 0.38; 'received:209.85': 0.38; 'url:org': 0.38; 'subject:: ': 0.38; 'client': 0.39; 'might': 0.39; 'received:209': 0.40; 'url:net': 0.61; 'sender:addr:chris': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rebertia.com; s=google; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=J51iRYhRs1BccwV26ge+DE7cOmXn7885KtMlfqTLdjc=; b=H1t7NfoxdTTShAIo43+f4SwieNjLJdRy906bdtUNkeUOtlMOD7HVaWHu1Yn1vi92EB fTNmdSUF6dDCAed/btNvg4zx/vgJOl1sZYrg7PQwrwTjPYMLTvLtzRqVKUdJViIMPYdo Sa/uAhp0/4UT0vI+MXsOwPQWmhM3SqaPG81+w= MIME-Version: 1.0 Sender: chris@rebertia.com In-Reply-To: References: Date: Mon, 25 Jul 2011 13:39:01 -0700 X-Google-Sender-Auth: 3YMK0nJ8wIUrbX83fYeAfIHacS0 Subject: Re: Signal only works in main thread From: Chris Rebert To: RVince Content-Type: text/plain; charset=UTF-8 Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 10 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1311626345 news.xs4all.nl 23898 [2001:888:2000:d::a6]:33936 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:10308 On Mon, Jul 25, 2011 at 12:19 PM, RVince wrote: > I am instantiating an SSH client class using this class: > > http://www.goldb.org/sshpython.html You might consider using Paramiko instead: http://www.lag.net/paramiko/ Cheers, Chris