From owner-freebsd-python@FreeBSD.ORG Tue Oct 5 13:40:03 2010 Return-Path: Delivered-To: freebsd-python@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8866E1065788 for ; Tue, 5 Oct 2010 13:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 59E3A8FC22 for ; Tue, 5 Oct 2010 13:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o95De3Is062466 for ; Tue, 5 Oct 2010 13:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o95De34b062465; Tue, 5 Oct 2010 13:40:03 GMT (envelope-from gnats) Date: Tue, 5 Oct 2010 13:40:03 GMT Message-Id: <201010051340.o95De34b062465@freefall.freebsd.org> To: freebsd-python@FreeBSD.org From: Leif Neland Cc: Subject: Re: ports/144872: lang/python25: Python 2.5 uname() broken X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Leif Neland List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Oct 2010 13:40:03 -0000 The following reply was made to PR ports/144872; it has been noted by GNATS. From: Leif Neland To: bug-followup@FreeBSD.org, leif@neland.dk Cc: Subject: Re: ports/144872: lang/python25: Python 2.5 uname() broken Date: Tue, 05 Oct 2010 15:32:49 +0200 Seems to be fixed now. My test #!/usr/bin/env python import os print "os.uname() = " + os.uname() gives another error, (my fault...) but print "os.uname() = " + os.uname()[0] as in nagios-statd works correctly: os.uname() = FreeBSD Leif