X-FeedAbuse: http://nntpfeed.proxad.net/abuse.pl feeded by 78.192.65.63 Path: csiph.com!usenet.pasdenom.info!nntpfeed.proxad.net!news.muarf.org!news.roellig-ltd.de!open-news-network.org!border2.nntp.ams1.giganews.com!nntp.giganews.com!newsfeed.xs4all.nl!newsfeed4a.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.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'python,': 0.02; 'value,': 0.04; 'model,': 0.05; 'pointers': 0.09; 'references,': 0.09; 'cc:addr:python-list': 0.11; 'python': 0.11; 'cons': 0.16; 'elements,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'lisp': 0.16; 'pointer,': 0.16; 'pointers,': 0.16; 'semantics': 0.16; 'subscripting': 0.16; 'variable.': 0.16; 'prevent': 0.16; 'wrote:': 0.18; 'all,': 0.19; "python's": 0.19; 'value.': 0.19; '(the': 0.22; 'cc:addr:python.org': 0.22; 'certainly': 0.24; 'either.': 0.24; 'pointer': 0.24; 'cc:2**0': 0.24; 'references': 0.26; 'pass': 0.26; 'header:In-Reply-To:1': 0.27; 'idea': 0.28; 'function': 0.29; "doesn't": 0.30; 'message-id:@mail.gmail.com': 0.30; 'bunch': 0.31; 'closer': 0.31; 'comparison': 0.31; 'helpful.': 0.31; 'another': 0.32; 'subject:time': 0.33; 'copying': 0.34; 'sense': 0.34; 'could': 0.34; 'but': 0.35; 'received:google.com': 0.35; 'really': 0.36; 'c++': 0.36; 'example,': 0.37; 'being': 0.38; 'limited,': 0.38; 'pm,': 0.38; 'anything': 0.39; 'explain': 0.39; 'itself': 0.39; 'skip:p 20': 0.39; 'how': 0.40; 'most': 0.60; 'simply': 0.61; "you're": 0.61; 'first': 0.61; 'fact,': 0.69; '2015': 0.84; 'to:none': 0.92; 'differences': 0.93 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:cc :content-type; bh=1TEzLWOgCugpyls+ovESdY9nck9y1fBINTfxwsmAD28=; b=xFFRj4pL27EU9lWO2yT0D6RXLOJtHgxx/PXkGRub6ZUgLYyq75kQWdsSCYkudfCN5C HU6z48NEvFk8tj7YWiRUdOaL66yqFwlid4fu6LW4Hjj+JR9Ho1iUldLvCrZOCJzmi3Ao fdOvbHPIEdDLQb4+D+uAjN+9eve1f4VuNOZE8iZq2cxUNWqcaglaFeLqAWC/V4A+JjEy wzDiWkE789lgvIMQOi0Mr4dBIlFGMUFKzd4swF9Fdf0ehcercQUGkAHlxcqZLu9Etdxh hv1XmyIhx6j9rc3e5e2/F3UcWKvVogue2vagG89cHVf+GMd9aER/skjL0gU9Grw7LGD8 ts8A== MIME-Version: 1.0 X-Received: by 10.43.0.67 with SMTP id nl3mr17659886icb.59.1432025430055; Tue, 19 May 2015 01:50:30 -0700 (PDT) In-Reply-To: <874mn9ezaw.fsf@elektro.pacujo.net> References: <9ceklad15llnv3npejq9iuh91soci8aeqo@4ax.com> <7ea01590-a559-46e5-abf5-29622e39aae7@googlegroups.com> <555ac697$0$12910$c3e8da3$5496439d@news.astraweb.com> <862693ca-42cf-4f5b-ac12-133e43e7606b@googlegroups.com> <878uclf3bt.fsf@elektro.pacujo.net> <555af171$0$12995$c3e8da3$5496439d@news.astraweb.com> <874mn9ezaw.fsf@elektro.pacujo.net> Date: Tue, 19 May 2015 18:50:29 +1000 Subject: Re: Slices time complexity From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 34 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1432025439 news.xs4all.nl 2931 [2001:888:2000:d::a6]:39003 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:90832 On Tue, May 19, 2015 at 6:39 PM, Marko Rauhamaa wrote: > For example, you could explain Python's object references as pointers > (memory addresses) if you considered that helpful. (That's how Lisp > textbooks often explain cons cells.) Sorta-kinda-maybe, but if a C programmer's idea of pointers is invoked to explain Python's object references, the differences will start to be problematic: 1) Pointer arithmetic simply doesn't exist in Python. Arrays/lists are not just pointers to their first elements, and subscripting is most definitely NOT "add to pointer and dereference". 2) In fact, dereferencing as a whole isn't really a 'thing' either. At best, it happens automatically. 3) References actually mean something. Copying a pointer doesn't. Whether the Python you're using is refcounted (CPython) or mark-and-sweep (uPy, I think) or some other model, an additional reference to the same object will prevent it from being disposed of, which isn't the case in C. 4) A pointer is itself a value. You can pass a pointer-to-local-variable to another function and have that function change a local variable. 5) Furthermore, since a pointer is a value, you can have pointers to pointers, etc. Doesn't make any sense in Python. A closer comparison is the C++ "reference", which works kinda like pass-by-reference, kinda like a pointer, and kinda not like anything at all, really. But that's still not the same thing as HLL object semantics (the same semantics used by Python, Pike, ECMAScript, and a bunch of other languages). As long as you are aware that analogies are always limited, you can certainly use them as part of an explanation; but you do have to take care. ChrisA