Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!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.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'encoding': 0.05; 'method.': 0.07; 'string': 0.09; 'moreover,': 0.09; 'cc:addr :python-list': 0.11; 'python': 0.11; '"replacement': 0.16; '(mainly': 0.16; 'fails.': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:program': 0.16; 'wrote:': 0.18; 'wed,': 0.18; 'cc:addr:python.org': 0.22; 'looks': 0.24; 'cc:2**0': 0.24; 'sort': 0.25; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'character': 0.29; 'characters': 0.30; 'message- id:@mail.gmail.com': 0.30; "skip:' 10": 0.31; 'correctly.': 0.31; 'subject:from': 0.34; "can't": 0.35; 'something': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'changing': 0.37; 'does': 0.39; 'entire': 0.61; 'to:none': 0.92 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=9Q/VZO6j6WS/Moqnz8dgS1qtSQu633O28LhE1QrblEk=; b=Y33FbkCRLp7r35P0KdAh8ISw5zgOBnG+REoJSwflAx1mWGqloGosv8NUC9emHB3hLQ xRFL0U1uZTwY+H+rvbthC/n9nUSBouLtyOjG892eWFDrfmjV2C36fGuuYQJKj54mRAFr mM3qFrcxDR72VOLrH9ffwNhBrmvfME19+TudrUSFA6J16L1ECu3gKiXp+wGOyyan3XzS MqT5E1yxGyu90KMZmo7+X6h3VBtPW8zkwn36RtNk7mRgolmK7zepARzPmHuw3u0ZaYPr CLs3mpFHo+JOSSosLe3OpX4ct4iQOCd1qNHRY/ulyvWhgX+AgFOICa1ei57ft71OJnzb ji5w== MIME-Version: 1.0 X-Received: by 10.66.142.201 with SMTP id ry9mr31417406pab.14.1396362571062; Tue, 01 Apr 2014 07:29:31 -0700 (PDT) In-Reply-To: <533AC9AF.5080604@limsi.fr> References: <533AC9AF.5080604@limsi.fr> Date: Wed, 2 Apr 2014 01:29:30 +1100 Subject: Re: Strange message from a program From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1396362575 news.xs4all.nl 2835 [2001:888:2000:d::a6]:43635 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:69518 On Wed, Apr 2, 2014 at 1:14 AM, Damien Touraine wrote: > I have a big program with several dependencies (mainly PySide). But, > sometimes, it fails with :RuntimeError: Can't find converter for > '\ufffd\ufffd' to call Python meta method. The given string ('\ufffd\ufffd') > is changing each time. Moreover, it can make a segmentation fault, but not > each time it fails. It would be a huge help if you copy and paste the entire traceback: everything that Python emits. Does the given string always have particular characters listed? It looks like you may be having some sort of character encoding issue; \ufffd means U+FFFD, the "Replacement Character" used when something can't be decoded correctly. ChrisA