Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Random832 Newsgroups: comp.lang.python Subject: Re: the global keyword: Date: Sat, 11 Jun 2016 21:27:47 -0400 Lines: 6 Message-ID: References: <1465689049.1080307.634938641.5F600BCB@webmail.messagingengine.com> <852bae21-5b2d-49da-8ae6-70e75cbf2d15@googlegroups.com> <1465694867.1095176.634975593.0EA97CFC@webmail.messagingengine.com> Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de S+/jMRZd476iuilx5sKVaQH45hK/PXGni9/ooq4pL71A== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.004 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'imported': 0.09; 'received:internal': 0.09; 'variables': 0.15; '20:12,': 0.16; 'message-id:@webmail.messagingengine.com': 0.16; 'received:10.202': 0.16; 'received:10.202.2': 0.16; 'received:10.202.2.212': 0.16; 'received:66.111': 0.16; 'received:66.111.4': 0.16; 'received:io': 0.16; 'received:messagingengine.com': 0.16; 'received:psf.io': 0.16; 'variable.': 0.16; 'wrote:': 0.16; 'variable': 0.18; 'defined': 0.23; 'sat,': 0.23; 'header:In-Reply-To:1': 0.24; 'module': 0.25; 'object,': 0.27; 'referenced': 0.29; 'but': 0.36; 'to:addr:python- list': 0.36; 'subject:: ': 0.37; 'received:10': 0.37; 'received:66': 0.38; 'subject:the': 0.39; 'to:addr:python.org': 0.40; 'still': 0.40; 'header:Message-Id:1': 0.61; 'subject::': 0.85 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=fastmail.com; h= content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=SBY5Cqs4vh8QpV5a8vVoXGKOBkU=; b=nH29fJ GaxENgzfvGXl602IZQB+VLluiYDdCu/5NF0K3cHaZoyjVCDF4Q0S8bNxKGPb7vfv /DXNT47G4kr0KiiPZUHsdLXy6JytVtTV+ic3JvmUTxzMnrle3nCoRc0sQa/86JJ/ vREqeWnmHZmrnsC9ofqeamCoYv9CrJ0HI2E5o= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=SBY5Cqs4vh8QpV5 a8vVoXGKOBkU=; b=jFm9YgNHZUTpa0UdVAcLtYtP/UIm10rH8K9nFrbEa8lmWC1 /E1IJZwIUHKL52siLiVP2r+UftCdvAPMQNB2HecL7DSH+eiw6k3hcj5XrSOSiLJb WTym5JZtQvwCMY+/G9uyFJXudLuJPQI5hTg6DOhMIg7mF4c65sGge9VcIuFI= X-Sasl-Enc: puY5QmXhPRjdgModAzdT6w4RqFtOPLafyMB1iU5PcIG3 1465694867 X-Mailer: MessagingEngine.com Webmail Interface - ajax-aff28cd1 In-Reply-To: <852bae21-5b2d-49da-8ae6-70e75cbf2d15@googlegroups.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: <1465694867.1095176.634975593.0EA97CFC@webmail.messagingengine.com> X-Mailman-Original-References: <1465689049.1080307.634938641.5F600BCB@webmail.messagingengine.com> <852bae21-5b2d-49da-8ae6-70e75cbf2d15@googlegroups.com> Xref: csiph.com comp.lang.python:109834 On Sat, Jun 11, 2016, at 20:12, Marcin Rak wrote: > What about variables that are user defined classes? Are they referenced > or copied? It will reference the same object, but if the variable is reassigned in the original module it will still not update the imported variable.