Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'say,': 0.05; 'attribute': 0.07; 'compiler': 0.07; 'found,': 0.07; 'referring': 0.07; 'assuming': 0.09; 'attributes': 0.09; 'from:addr:ethan': 0.09; 'from:addr:stoneleaf.us': 0.09; 'from:name:ethan furman': 0.09; 'message-id:@stoneleaf.us': 0.09; '~ethan~': 0.09; 'python': 0.11; 'def': 0.12; 'itself.': 0.14; '"python': 0.16; '@property': 0.16; 'attribute,': 0.16; 'behavior,': 0.16; 'roy': 0.16; 'underlying': 0.16; 'wrote:': 0.18; 'figures': 0.19; 'written': 0.21; 'seems': 0.21; '>>>': 0.22; 'rules': 0.22; 'header:User-Agent:1': 0.23; "haven't": 0.24; 'class.': 0.26; 'nearly': 0.26; 'gets': 0.27; 'header:In-Reply- To:1': 0.27; 'point': 0.28; 'correct': 0.29; 'tim': 0.29; "doesn't": 0.30; 'said,': 0.30; 'code': 0.31; '>>>>': 0.31; 'bunch': 0.31; 'steven': 0.31; 'run': 0.32; 'implemented': 0.33; 'skip:_ 10': 0.34; "can't": 0.35; 'except': 0.35; 'there': 0.35; 'accessible': 0.36; 'c++': 0.36; "he's": 0.36; 'view,': 0.36; 'subject:?': 0.36; 'generic': 0.38; 'writes': 0.38; 'skip:[ 10': 0.38; 'whatever': 0.38; 'to:addr:python-list': 0.38; 'fact': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'changed': 0.39; 'called': 0.40; 'even': 0.60; 'skip:u 10': 0.60; 'most': 0.60; 'matter': 0.61; 'received:173': 0.61; 'name': 0.63; 'between': 0.67; 'smith': 0.68; 'etc,': 0.84; 'ethan': 0.84; 'furman': 0.84; 'maybe,': 0.84; 'absolutely': 0.87; 'why?': 0.91; 'subject:skip:E 10': 0.95 Date: Sun, 01 Sep 2013 21:15:03 -0700 From: Ethan Furman User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: Encapsulation unpythonic? References: <8255dfbd-a2a1-4ab7-b900-ee19faa459f2@googlegroups.com> <8c7c4854-70e1-46e7-a3ff-a3206c4c5c27@googlegroups.com> <5221567b$0$6599$c3e8da3$5496439d@news.astraweb.com> <5221d7ab$0$6599$c3e8da3$5496439d@news.astraweb.com> <5222f675$0$6599$c3e8da3$5496439d@news.astraweb.com> <9c11126f-93e8-461c-b487-bafc6b146269@googlegroups.com> <5223A495.5070103@stoneleaf.us> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - gator3304.hostgator.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - stoneleaf.us X-BWhitelist: no X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: ([173.12.184.233]) [173.12.184.233]:54725 X-Source-Auth: ethan+stoneleaf.us X-Email-Count: 1 X-Source-Cap: dG9idWs7dG9idWs7Z2F0b3IzMzA0Lmhvc3RnYXRvci5jb20= 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: 44 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1378096575 news.xs4all.nl 15883 [2001:888:2000:d::a6]:39501 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:53456 On 09/01/2013 05:59 PM, Roy Smith wrote: > Ethan Furman wrote: >> On 09/01/2013 02:54 PM, Tim Delaney wrote: >>> Roy Smith wrote: >>>> >>>> Nothing is accessible in Python except via getters and setters. The >>>> only difference between Python and, say, C++ in this regard is that the >>>> Python compiler writes them for you most of the time and doesn't make >>>> you put ()'s at the end of the name >>> >>> I think Roy is referring to the fact that attribute access is implemented >>> via __getattr__ / __getattribute__ / >>> __setattr__ / __delattr__. From one point of view, he's absolutely correct >>> - nearly all attributes are accessed via >>> getters/setters in Python. >> >> Seems to me there is a difference between an underlying generic protocol for >> data manipulation and "Python writing them >> [getters/setters] for you". > > Why? When I write "foo.bar", a bunch of generic code gets run which > figures out what value to return. If I don't like the generic behavior, > I can write my own __getattrr__(), etc, and make it do whatever I want. I don't yet know C++ so I can't speak to it. In Python if you are writing your own __getattr__, etc., you are writing the underlying protocol itself. To write a getter/setter you would just use def get_soemthing(...) def set_something(...) or, even better @property def something(...) Maybe, as Steven said, it's just a matter of degree: my understanding of getters/setters is that they are per attribute, while __getattr__ will be called for every attribute not otherwise found, __setattr__ will be called for every assignment, __delattr__ will be called for every deletion, and all that is assuming you haven't written your own __getattribute__ and completely changed the rules for your class. -- ~Ethan~