Path: csiph.com!1.us.feeder.erje.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed0.kamp.net!newsfeed.kamp.net!fu-berlin.de!uni-berlin.de!not-for-mail From: MRAB Newsgroups: comp.lang.python Subject: Re: the global keyword: Date: Sun, 12 Jun 2016 01:09:13 +0100 Lines: 15 Message-ID: References: <1465689049.1080307.634938641.5F600BCB@webmail.messagingengine.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.uni-berlin.de xcfiB02xN/L1zlBEhj1aPQhSZ4THau3DrDKOyHRYGpkw== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'imported': 0.09; 'throw': 0.09; 'importing': 0.15; 'value.': 0.15; 'from:addr:mrabarnett.plus.com': 0.16; 'from:addr:python': 0.16; 'from:name:mrab': 0.16; 'message-id:@mrabarnett.plus.com': 0.16; "module's": 0.16; 'received:192.168.1.4': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'variable.': 0.16; 'wrote:': 0.16; 'refers': 0.18; 'creates': 0.18; 'variable': 0.18; 'sat,': 0.23; 'header:In-Reply-To:1': 0.24; 'module': 0.25; 'header:User- Agent:1': 0.26; "doesn't": 0.26; 'question': 0.27; 'module.': 0.27; 'reflected': 0.29; 'way?': 0.29; 'anyone': 0.32; 'source': 0.33; 'true.': 0.33; 'could': 0.35; 'possible': 0.36; 'to:addr :python-list': 0.36; 'subject:: ': 0.37; 'does': 0.39; 'subject:the': 0.39; 'received:192': 0.39; 'to:addr:python.org': 0.40; 'your': 0.60; '(global': 0.84; 'test.py)': 0.84; 'subject::': 0.85 X-CM-Score: 0.00 X-CNFS-Analysis: v=2.1 cv=K//fZHiI c=1 sm=1 tr=0 a=0nF1XD0wxitMEM03M9B4ZQ==:117 a=0nF1XD0wxitMEM03M9B4ZQ==:17 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=IkcTkHD0fZMA:10 a=U1r_xPKvQ-m0OjPlDiwA:9 a=QEXdDO2ut3YA:10 X-AUTH: mrabarnett@:2500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 In-Reply-To: <1465689049.1080307.634938641.5F600BCB@webmail.messagingengine.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: X-Mailman-Original-References: <1465689049.1080307.634938641.5F600BCB@webmail.messagingengine.com> Xref: csiph.com comp.lang.python:109829 On 2016-06-12 00:50, Random832 wrote: > On Sat, Jun 11, 2016, at 19:44, Marcin Rak wrote: >> So my question is, how the heck is it possible that I get 5 as the last >> value printed? the global test_var (global to Test.py) I set to 44 when I >> ran some_function()??? does anyone have a clue they could throw my way? > > Importing a variable from a module copies its value into your own > module's variable. Updates to the source module's variable will not be > reflected in your module. > Not true. Importing doesn't copy the value. Importing a name creates a new name in the local scope that refers to the same object that the imported name referred to.