Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed2.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.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'win32': 0.03; 'subject:design': 0.09; 'yeah,': 0.09; 'python': 0.11; '10:49': 0.16; 'explicitly,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'janssen': 0.16; 'really?': 0.16; 'subject:Language': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'thu,': 0.19; '>>>': 0.22; 'saying': 0.22; 'class.': 0.26; 'pass': 0.26; 'header:In-Reply-To:1': 0.27; 'tried': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'skip:( 20': 0.30; "i'm": 0.30; 'code': 0.31; 'object.': 0.31; 'sep': 0.31; 'class': 0.32; 'run': 0.32; 'community': 0.33; 'received:google.com': 0.35; "i'll": 0.36; 'to:addr:python-list': 0.38; '12,': 0.39; 'sure': 0.39; 'to:addr:python.org': 0.39; '2013': 0.98 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:to :content-type; bh=oKaMdA74x7kQX1I5Fsae/eJjkeScFR2PCCHi6hYBiLQ=; b=jZfS1DP2OyaEP69y1UyZUxxLzxl8oP025A/61Wtsz4EU/bHFrMfeO/pBu2fstgKNXu h28OD3kwCY1rTRC1l70JU5mMjOQrZC4V/UwZw9exD6ZedA11y1hBCQo3IC29NviTMZTR 5kasnmNMvGsTdw7aatWeXt1PR3UMlUP8KdnvOgYoZPOLYEfcMsZ+u/dPZtweuFYsGqLC 7hKvQgLoLBig037MMWXyLfC93Ed8h7hG/0yLBv448JeFuj8526oQ47Kt9iHofmX7i2Hh MvBJOEFD48PQkvuVqJXGcMhamXMztfts0NuiclD8hWxTRQthOG6jy54/2E4YN4A+1jjb u34w== MIME-Version: 1.0 X-Received: by 10.66.249.134 with SMTP id yu6mr6839422pac.37.1378950076374; Wed, 11 Sep 2013 18:41:16 -0700 (PDT) In-Reply-To: References: <522eb795$0$29999$c3e8da3$5496439d@news.astraweb.com> <5230ff66$0$29988$c3e8da3$5496439d@news.astraweb.com> Date: Thu, 12 Sep 2013 11:41:16 +1000 Subject: Re: Language design From: Chris Angelico To: python-list@python.org Content-Type: text/plain; charset=ISO-8859-1 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: 23 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1378950085 news.xs4all.nl 15870 [2001:888:2000:d::a6]:38307 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:54023 On Thu, Sep 12, 2013 at 10:49 AM, Mark Janssen wrote: >>> 1) It tried to make Object the parent of every class. >> >> Tried, and succeeded. > > Really? Are you saying you (and the community at-large) always derive > from Object as your base class? Uhh, yep? It kinda happens automatically for me: Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 10:55:48) [MSC v.1600 32 bit (Intel)] on win32 >>> class Foo: pass >>> Foo.__bases__ (,) Yeah, I think I'm always deriving from object. Also, if ever I write code that has to run also on 2.x, I'll do that explicitly, to be sure it works the same way. ChrisA