Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Michael Selik Newsgroups: comp.lang.python Subject: Re: Conversion: execfile --> exec Date: Mon, 13 Jun 2016 22:14:19 +0000 Lines: 8 Message-ID: References: <2ff66017-2c20-40eb-8e9d-853b33ec239b@googlegroups.com> <9f4457b3-4f31-4285-ad66-eb4db87b8dd9@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de 8yLGmpjuXKWnQL8DVtu4XgAlaS7CBs+SYa60q0Pv7fhw== Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.008 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'bug.': 0.07; 'cached': 0.09; 'globals': 0.09; '2016': 0.16; 'guessing': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'sys.modules': 0.16; 'wrote:': 0.16; 'email addr:gmail.com>': 0.18; 'to:2**1': 0.21; 'either.': 0.22; 'object.': 0.22; 'suppose': 0.22; 'import': 0.24; 'header:In-Reply-To:1': 0.24; 'feature': 0.24; 'mon,': 0.24; 'module': 0.25; "doesn't": 0.26; 'message-id:@mail.gmail.com': 0.27; 'looks': 0.29; '13,': 0.29; 'creating': 0.30; 'received:google.com': 0.35; 'received:209.85': 0.36; 'to:addr :python-list': 0.36; 'subject:: ': 0.37; 'received:209': 0.38; 'means': 0.39; 'sure': 0.39; 'to:addr:python.org': 0.40; 'course': 0.62; 'intent': 0.66; 'locals': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=0EOvClEFecr5GN5SKVRv43WfFnW5tqJQ0+uQk/sRy/M=; b=oZwzkwxSAIZt4beuI/zFNz5GBD/h0FKi8BONtxIUyj/PyFbpOLZKIFuyXmoAW/nspN uSuH4ymYYYR4kirYlipRbM1bu0geRRV/Vmf288hEYB9hi3thc6P999jh6G/mCm0iGDV5 j4l+D6/HD0xkmN0PB/7+ZMeDOXTL0Bk7JXPq47DEgyaf7TcGZNh1ZUaJxEl7ib2bBN01 yefTh6vIP/Tyep1e0K3Ipc4qepBEuixZAMPNeF2gwWKImHGDFmNynI04YQlMy7GnL2Os IGKXgiuDgopYHvaG1wTIRWoiMjU6v7uW7EMFqUl4IrGvOLhq2w5mK6cYB8e9Gwkg542O e9Ow== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=0EOvClEFecr5GN5SKVRv43WfFnW5tqJQ0+uQk/sRy/M=; b=Pu7oTea+JRihgX6Mr0zf4155MEOClrCJi7+jAQ3AJybjzTtKgD0jF10YyLevWpwKRa QYRxVZucvCR7ITTFavwJM0sTTqbIMnFSpz9gzzSS8N+wG6lkau9ENngJQ8hX3qKR00d6 IlVElEj8fXGFZjTDHdGmaMsjSDSfglcfV9PQ64sOH85+GA15llMtDAr0hczyOM3uudSb ICKi5+27+177BdOgDdFYBKbhqnKhJKrJLGl+FJtqMhD0AdV7sIYxj7JnchwgcADKwOZV ZOUycTDpxKVbc0e7QXmjIrNf58PkZxIxw6bfFO5yhJbN8mlZTRUmHGQ9slmB7mDNg3IZ j3zw== X-Gm-Message-State: ALyK8tIhhMms9RPCHjhVzWF+XtTUH1FKPCkFRzNtGxovJ9VgnazOVDFQdMVKlLCNCjAdhd9rhv722ETLz7bgBA== X-Received: by 10.140.106.228 with SMTP id e91mr16101211qgf.75.1465856068821; Mon, 13 Jun 2016 15:14:28 -0700 (PDT) In-Reply-To: <9f4457b3-4f31-4285-ad66-eb4db87b8dd9@googlegroups.com> X-Content-Filtered-By: Mailman/MimeDel 2.1.22 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: <2ff66017-2c20-40eb-8e9d-853b33ec239b@googlegroups.com> <9f4457b3-4f31-4285-ad66-eb4db87b8dd9@googlegroups.com> Xref: csiph.com comp.lang.python:109910 On Mon, Jun 13, 2016 at 1:51 PM Rustom Mody wrote: > looks (to me) like an intent to import the package chaco with no locals > and globals -- Just guessing of course > And without creating a module object. I suppose that means it doesn't get cached in sys.modules either. Not sure if that's a feature or a bug.