From owner-freebsd-python@FreeBSD.ORG Sun Feb 13 18:18:10 2005 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1357716A4CE for ; Sun, 13 Feb 2005 18:18:10 +0000 (GMT) Received: from vsmtp4.tin.it (vsmtp4.tin.it [212.216.176.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 342A543D4C for ; Sun, 13 Feb 2005 18:18:09 +0000 (GMT) (envelope-from massimo@mail.studiomasson.it) Received: from [192.168.1.111] (82.50.93.220) by vsmtp4.tin.it (7.0.027) id 420DCB8D0007858B for python@freebsd.org; Sun, 13 Feb 2005 19:18:07 +0100 Message-ID: <420FA7EF.4070905@mail.studiomasson.it> Date: Sun, 13 Feb 2005 19:18:07 +0000 From: Massimo Masson User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; it-IT; rv:1.7.2) Gecko/20041016 X-Accept-Language: it, en, en-us MIME-Version: 1.0 To: python@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: wxWidgets problem X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: max@mail.studiomasson.it List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Feb 2005 18:18:10 -0000 Hello. I upgraded from 5.2.1 to 5.3. A couple of programs i wrote, based upon wxWidgets, don't work anymore, and they exit with a core dump, no traceback available. These programs worked fine before the update, and currently work fine under Windows, with the same versions of python and wxPython, so i suppose it must be a freebsd problem, here is why i write here... I have: freebsd 5.3#0 and (all installed via pkg_add -r): python-2.3.4_2 wxgtk2-2.4.2_4 py23-wxPython-2.4.2.4_2 I "debugged" manually with prints, and i found that the system core dumps here: [...] from wxPython.html import wxHtmlWindow [...] self.Overview = wxHtmlWindow(splitter2, -1, size = (400, 450)) # here arrives... self.SetOverview(os.getcwd() + '/' + HTML_NAVIGATOR_OVERVIEW) # here doesn't arrives [...] def SetOverview(self, html_file): '''Set the overview page to specified html_file''' # next line CORE DUMPS!!! <<<----- self.Overview.LoadPage(html_file) # END of SetOverview I've been searching for a while with google, but i haven't found anything useful... Has anyone some idea or suggestion for me? Thanks in advance, Max.