Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #55118

Re: class implementation

Path csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <nedbat@gmail.com>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.016
X-Spam-Evidence '*H*': 0.97; '*S*': 0.00; 'method.': 0.07; 'variables': 0.07; 'method,': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'subject:class': 0.16; 'variables,': 0.16; 'sender:addr:gmail.com': 0.17; 'wrote:': 0.18; 'do.': 0.18; 'cc:addr:python.org': 0.22; 'header:User-Agent:1': 0.23; 'visible': 0.24; 'regardless': 0.24; 'cc:2**0': 0.24; 'cc:no real name:2**0': 0.24; 'header:In-Reply-To:1': 0.27; "doesn't": 0.30; 'subject:skip:i 10': 0.31; 'class': 0.32; 'but': 0.35; 'received:google.com': 0.35; 'pm,': 0.38; 'does': 0.39; 'dave': 0.60; 'course': 0.61; "you're": 0.61; 'within': 0.65; 'details:': 0.80; 'angel': 0.91
DKIM-Signature v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=2LllrTNId2/tQW5JPA1lKmsWxHW11uJQCR9hCt6ac7w=; b=xHOBP5pbJSrOlj58EIzRdl5MfzObx6qNMcmfSc6mAP5PkpSSP3k80eTgEaQDzs6gY2 wFvCDLboLrY0HCRCvHD+62yVHRs7yv61E9hjMzuZNYXvQoz3tFmjlxcrsFejMRHZKzTD PeWirnJXZFcXsatJeULtlT3L0BjpcMQUZsxYaTOuM4WDmJ9vnk4LqDGM0Fp9pRXE2Wx7 OH31qYdqqSbGMZKrK2H+VPSkbXheQLjC67JvBSu9P3N3XZiIi1OBD49ySVFAcLzNyB0y oTK4tsHRsh74OsivmI5K+JEzAwjd5KJrl9QmqnCHojvP6iB22lSINGt1Tr3eWuQU1n+3 h88w==
X-Received by 10.49.134.102 with SMTP id pj6mr31875741qeb.49.1380576511893; Mon, 30 Sep 2013 14:28:31 -0700 (PDT)
Sender Ned Batchelder <nedbat@gmail.com>
Date Mon, 30 Sep 2013 17:28:30 -0400
From Ned Batchelder <ned@nedbatchelder.com>
User-Agent Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:17.0) Gecko/20130801 Thunderbird/17.0.8
MIME-Version 1.0
To Dave Angel <davea@davea.name>
Subject Re: class implementation
References <6e338858-b9e6-4745-9959-35d7c0c7724e@googlegroups.com> <02724244-c924-4cf0-9656-71ade6e435c2@googlegroups.com> <l2cjnf$42l$1@ger.gmane.org>
In-Reply-To <l2cjnf$42l$1@ger.gmane.org>
Content-Type text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding 7bit
Cc python-list@python.org
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.510.1380576514.18130.python-list@python.org> (permalink)
Lines 11
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1380576514 news.xs4all.nl 15901 [2001:888:2000:d::a6]:34950
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:55118

Show key headers only | View raw


On 9/30/13 3:34 PM, Dave Angel wrote:
> Python doesn't actually have variables, but the things it documents as
> variables are local names within a method.  Those are not visible
> outside of the method, regardless of whether you're in a class or a
> subclass.

Why does this meme persist!?  Of course Python has variables, they just 
don't work like C variables do.  If you'd like to know the details: 
http://nedbatchelder.com/text/names.html

--Ned.

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

class implementation markotaht@gmail.com - 2013-09-30 01:43 -0700
  Re: class implementation Peter Otten <__peter__@web.de> - 2013-09-30 11:03 +0200
  Re: class implementation markotaht@gmail.com - 2013-09-30 02:10 -0700
    Re: class implementation Peter Otten <__peter__@web.de> - 2013-09-30 11:27 +0200
  Re: class implementation markotaht@gmail.com - 2013-09-30 05:41 -0700
    Re: class implementation Peter Otten <__peter__@web.de> - 2013-09-30 15:02 +0200
    Re: class implementation Joel Goldstick <joel.goldstick@gmail.com> - 2013-09-30 09:21 -0400
    Re: class implementation Piet van Oostrum <piet@vanoostrum.org> - 2013-09-30 13:32 -0400
    Re: class implementation Dave Angel <davea@davea.name> - 2013-09-30 19:34 +0000
      Re: class implementation 88888 Dihedral <dihedral88888@gmail.com> - 2013-10-01 00:01 -0700
    Re: class implementation Ned Batchelder <ned@nedbatchelder.com> - 2013-09-30 17:28 -0400
      Re: class implementation Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-09-30 23:45 +0000
        Re: class implementation Ethan Furman <ethan@stoneleaf.us> - 2013-09-30 17:31 -0700
    Re: class implementation random832@fastmail.us - 2013-09-30 17:49 -0400
    Python variables?  [was Re: class implementation] Ethan Furman <ethan@stoneleaf.us> - 2013-09-30 15:02 -0700
    Re: Python variables? Ben Finney <ben+python@benfinney.id.au> - 2013-10-01 08:37 +1000
    Re: Python variables?  [was Re: class implementation] Ned Batchelder <ned@nedbatchelder.com> - 2013-09-30 19:45 -0400
      Re: Python variables?  [was Re: class implementation] "Rhodri James" <rhodri@wildebst.demon.co.uk> - 2013-10-01 01:29 +0100
    Re: Python variables? Ned Batchelder <ned@nedbatchelder.com> - 2013-09-30 19:47 -0400
      Re: Python variables? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-10-01 01:03 +0000
        Re: Python variables? Ned Batchelder <ned@nedbatchelder.com> - 2013-09-30 21:28 -0400
    Re: class implementation Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-10-01 00:19 +0000
  Re: class implementation markotaht@gmail.com - 2013-10-06 06:15 -0700
    Re: class implementation Terry Reedy <tjreedy@udel.edu> - 2013-10-06 15:52 -0400
    Re: class implementation Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-10-07 01:24 +0000
  Re: class implementation markotaht@gmail.com - 2013-10-08 01:20 -0700
    Re: class implementation Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-10-08 09:41 +0100
    Re: class implementation Dave Angel <davea@davea.name> - 2013-10-08 10:31 +0000
    Re: class implementation Cameron Simpson <cs@zip.com.au> - 2013-10-09 10:55 +1100
      Re: class implementation markotaht@gmail.com - 2013-10-10 11:34 -0700
        Re: class implementation Cameron Simpson <cs@zip.com.au> - 2013-10-11 09:07 +1100
        Re: class implementation Piet van Oostrum <piet@vanoostrum.org> - 2013-10-10 19:29 -0400
          Re: class implementation Ben Finney <ben+python@benfinney.id.au> - 2013-10-11 10:51 +1100
  Re: class implementation markotaht@gmail.com - 2013-10-08 07:05 -0700
    Re: class implementation "Rhodri James" <rhodri@wildebst.demon.co.uk> - 2013-10-09 00:41 +0100

csiph-web