Path: csiph.com!news.mixmin.net!newsreader4.netcologne.de!news.netcologne.de!fu-berlin.de!uni-berlin.de!not-for-mail From: Chris Angelico Newsgroups: comp.lang.python Subject: Re: nosepipe error Date: Wed, 24 Feb 2016 04:43:18 +1100 Lines: 18 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de 785Ilhwxrk3uJABUnNhx8wC+Jx11N8YH0PMD+WCLDf0A== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'received:209.85.223': 0.03; 'cc:addr:python-list': 0.09; 'sys.stderr': 0.09; 'unhandled': 0.09; 'thread': 0.10; 'subject:error': 0.11; 'exception': 0.13; 'wed,': 0.15; '2016': 0.16; '24,': 0.16; 'cascading': 0.16; 'cc:name:python list': 0.16; 'exceptions.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'received:209.85.223.173': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'sees': 0.16; 'wrote:': 0.16; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'am,': 0.23; 'feb': 0.23; 'header:In-Reply-To:1': 0.24; 'message-id:@mail.gmail.com': 0.27; 'looks': 0.29; 'dan': 0.29; 'there.': 0.30; "i'm": 0.30; 'received:google.com': 0.35; 'could': 0.35; 'received:209.85': 0.36; 'beginning': 0.36; 'subject:: ': 0.37; 'being': 0.37; 'missing': 0.37; 'received:209': 0.38; 'sure': 0.39; 'where': 0.40; 'eye': 0.61; 'levels': 0.70; 'chrisa': 0.84; 'to:none': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=GYZDrIJkcNCCVaRQyOqmZZdn5c9fFZrySgh1OlRvM98=; b=JN2oxLJvxZGvs6316ZnIO2SJYTUJjqGQsQ52O9QmvWkVPdHUKiKZdHufZw0EdMBdT8 ccNKWi4sv3+2XwXmFPZSEFg5Ep8SLFgumWCMfIAbriWx0lu8A2IFKUZ5L+MKqewgZHqs 5S6ay20i8voLtRmfVuwUOgy/vhHNVlrfS3Ms+hV7dK4yl0D8nc4boegNlEFZPpqzSMjh utDSqJnA6MzhYvOMvwmN+rF3v8/ChM5r5iWT073kprJD5U6zdve5kiv9fLuXz5ngsy4c OFP1XxGyMHi+axWKu6TS6x3GMJO4jrKiVTruQvNmOxp3qu1XPfg5lLYiMoIFrLBolokb bxuQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:cc:content-type; bh=GYZDrIJkcNCCVaRQyOqmZZdn5c9fFZrySgh1OlRvM98=; b=lwYNgosoEEoWl7Fvd3JaEsnKdfxBedMYXRpxu/V3QpGoBq4x8AuEy5yuFKCHsxe39E ciigxsDmauWcZ0Djyin+hTQIC/4lK4q4kktDabQgiWP1GNnvWSbY2ErTZAz0vdsF60So sRxqJOOfqbOCkW9fR3EzsWTK2l/8k8kwvtz6/0li01ipEw1+xM/yCGN3W5fsGGVUzbGe 9hIpXpPewLQL/uMZQk6TQqpmB/wLoA8GsvGHMto1uuv3n201ZFhItUqgOQiAHo2j/BIM EDTr3YP2fqNEpxAv0WMPqXLzq69TsVOQYiU/z1NL6h8TBskRSAfu6TPAshf49M8N9Rv+ bhlg== X-Gm-Message-State: AG10YOQ5yfjIntC40+Hp5xSFNa3KqrimCIL4f4MD4Mzu/uBnJWzV99jhFkUjwMlc2WghrhgPRk5gKGbIzhlBYw== X-Received: by 10.107.158.20 with SMTP id h20mr13518579ioe.31.1456249398744; Tue, 23 Feb 2016 09:43:18 -0800 (PST) In-Reply-To: X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.21rc2 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Xref: csiph.com comp.lang.python:103411 On Wed, Feb 24, 2016 at 4:36 AM, Dan Stromberg wrote: > Message: Unhandled exception in thread started by > sys.excepthook is missing > lost sys.stderr > > That 1433299041 looks like ASCII: >>>> hex(1433299041) > '0x556e6861' >>>> chr(0x55) + chr(0x6e) + chr(0x68) + chr(0x61) > 'Unha' > > ...but I'm not sure where to go with that from there. My eye sees those characters as being the beginning of "Unhandled exception in thread". You could be dealing with multiple levels of cascading exceptions. ChrisA