From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26599 invoked by alias); 11 Jun 2013 13:37:51 -0000 Mailing-List: contact gdb-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sourceware.org Received: (qmail 26588 invoked by uid 89); 11 Jun 2013 13:37:51 -0000 X-Spam-SWARE-Status: No, score=-7.0 required=5.0 tests=AWL,BAYES_00,KHOP_THREADED,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Tue, 11 Jun 2013 13:37:50 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r5BDbgBP028167 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 11 Jun 2013 09:37:42 -0400 Received: from localhost.localdomain (ovpn-112-22.ams2.redhat.com [10.36.112.22]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r5BDbfQP027136; Tue, 11 Jun 2013 09:37:41 -0400 Message-ID: <51B72824.8040306@redhat.com> Date: Tue, 11 Jun 2013 13:37:00 -0000 From: Phil Muldoon MIME-Version: 1.0 To: Julian Smith CC: gdb@sourceware.org Subject: Re: Current gdb python errors on python-2.4 References: <20130609035926.40bad3bb.jules@op59.net> <51B72757.9050902@redhat.com> In-Reply-To: <51B72757.9050902@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-SW-Source: 2013-06/txt/msg00034.txt.bz2 On 11/06/13 14:34, Phil Muldoon wrote: > The only way (I know) to get exceptions to work for all versions of > Python is to do something like: > > except Exception: > e = sys.exc_info[1] > Oops, typo. I mean: except Exception: e = sys.exc_info()[1] Cheers, Phil