From owner-freebsd-gnome@FreeBSD.ORG Fri Nov 9 21:30:47 2007 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BFD316A41A for ; Fri, 9 Nov 2007 21:30:47 +0000 (UTC) (envelope-from indigo23@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.229]) by mx1.freebsd.org (Postfix) with ESMTP id 0E06813C4BC for ; Fri, 9 Nov 2007 21:30:46 +0000 (UTC) (envelope-from indigo23@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so510484nzf for ; Fri, 09 Nov 2007 13:30:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; bh=OWHc0B+wSGQmah9Zu7sOI7Fc3UtuKZ3fLWD1//uhDaw=; b=VC9PB7SG6W2sMZNOQtwRt3zxYKTQAkefG56dwYhrPVxlGP6lv5ophNkdDRDcoGTLM6CSiWpg+lVzkBjXm9z8ERvCYlIVqyuZCss3pW7hDtIIYN15konniL4kqBDjTyxUXI3oq794fDrngk3S3XDtCsG7wJQGaR+U9bEaUnDMtdI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=ZDiVGfX1+Pv2AMTIm+/YLeYy31EpjW2XxQxSKrxMMLS+DW8HwymmUs3eYpNNhg9Eg/5QcuZeg6TEF94LrIW/DjmzDsUcXQRQba8C01KEPPPQw4dwM+Cez+YJPcaTy1NcDm6eZ338MPP+avuDVody9ertaA1ayaagXH64/MPOtNk= Received: by 10.142.154.20 with SMTP id b20mr734797wfe.1194642106711; Fri, 09 Nov 2007 13:01:46 -0800 (PST) Received: by 10.142.125.6 with HTTP; Fri, 9 Nov 2007 13:01:46 -0800 (PST) Message-ID: <6f50eac40711091301l9bbbdfk97014e7e73c0f82b@mail.gmail.com> Date: Fri, 9 Nov 2007 16:01:46 -0500 From: "Indigo 23" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-gnome@freebsd.org Subject: Consistent Python error X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Nov 2007 21:30:47 -0000 Ever since I updated to python-2.5 using the instructions in UPDATING, I've been getting errors running python apps, it is related to the md5 module and I keep getting errors about it. I tried completely removing python and re-compiling/installing it and and a lot of the apps that depend on it, but to no avail, I keep getting the same error. Anyone have any idea how to fix this? Here's a sample error message that I frequently get from various python-based apps: Traceback (most recent call last): File "/usr/local/bin/", line 39, in import urllib2 File "/usr/local/lib/python2.5/urllib2.py", line 88, in import hashlib File "/usr/local/lib/python2.5/hashlib.py", line 133, in md5 = __get_builtin_constructor('md5') File "/usr/local/lib/python2.5/hashlib.py", line 60, in __get_builtin_constructor import _md5 ImportError: No module named _md5 PS. I replaced the actual app name with because it doesn't occur with just one app, it happens with several, so it is not specific to any one particular application.