From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 46922 invoked by alias); 14 Nov 2016 15:23:16 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 46873 invoked by uid 89); 14 Nov 2016 15:23:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS,URIBL_RED autolearn=ham version=3.3.2 spammy= X-HELO: relay1.mentorg.com Date: Mon, 14 Nov 2016 15:23:00 -0000 From: Joseph Myers To: Mike Frysinger CC: Subject: Re: Add script to build many glibc configurations In-Reply-To: <20161114150603.GT21655@vapier.lan> Message-ID: References: <20161114150603.GT21655@vapier.lan> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" X-ClientProxiedBy: svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) To svr-ies-mbx-01.mgc.mentorg.com (139.181.222.1) X-SW-Source: 2016-11/txt/msg00466.txt.bz2 On Mon, 14 Nov 2016, Mike Frysinger wrote: > > +class Context: > > please no old style classes. all of them should inherit object. > class Context(object): There's no such thing as an old-style class in Python 3 (and this script requires 3.5 or later); inheritance from object happens by default. -- Joseph S. Myers joseph@codesourcery.com