Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!eternal-september.org!feeder.eternal-september.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed2a.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; 'assign': 0.07; 'modify': 0.07; 'subject:Question': 0.07; '[0]': 0.09; 'builtin': 0.09; 'caller': 0.09; 'happens.': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'def': 0.12; '"="': 0.16; '"create': 0.16; 'after,': 0.16; 'means.': 0.16; 'mylist': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'subject:object': 0.16; 'wrote:': 0.18; 'print': 0.22; 'header :User-Agent:1': 0.23; 'refers': 0.24; 'pass': 0.26; 'header:X -Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'function': 0.29; '[1]': 0.29; "i'm": 0.30; 'there.': 0.32; 'but': 0.35; 'there': 0.35; 'object,': 0.36; 'subject:?': 0.36; 'list': 0.37; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'then,': 0.60; 'name': 0.63; 'refer': 0.63; 'within': 0.65; 'jul': 0.74; 'behavior': 0.77; 'received:pacbell.net': 0.84; 'shadow': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: emile Subject: Re: Question about Pass-by-object-reference? Date: Tue, 22 Jul 2014 13:46:25 -0700 References: <986eee35-0327-46e5-bce0-b1ae4572dd8f@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: adsl-69-226-129-65.dsl.pltn13.pacbell.net User-Agent: Mozilla/5.0 (X11; Linux i686; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 In-Reply-To: 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: 40 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1406062021 news.xs4all.nl 2837 [2001:888:2000:d::a6]:54445 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:75019 On 07/22/2014 01:35 PM, Peter Pearson wrote: > On Tue, 22 Jul 2014 12:34:51 -0700 (PDT), fl wrote: > [snip] >> >> But I don't understand the reassign function result: >> >>>>> def reassign(list): >> ... list=[0,1] >> ... >>>>> list=[0] >>>>> reassign(list) >>>>> print list >> [0] > > When you say "def reassign(list)", that means "I'm defining a function > to which the caller will pass one object, and within this function I'm > going to refer to that object by the name 'list'." > > Then, when you say "list=[0,1]", that means "Create the object [0,1], > and assign to it the name 'list'." At this point, there is no longer > any name that refers to the object that the caller passed. > > You might have thought that "list=[0,1]" would modify the caller-passed > object, but that's not what happens. That's not what "=" means. > However, if that is the behavior you were after, you can get there. def reassign(mylist): # no reason to shadow the list builtin mylist[:] = [0,1] mylist = [1] reassign(mylist) mylist Emile