Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!selfless.tophat.at!newsfeed.xs4all.nl!newsfeed5.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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'subject:module': 0.04; 'mrab': 0.05; 'sys': 0.05; 'indentation': 0.07; '__name__': 0.09; 'from:addr:ethan': 0.09; 'from:addr:stoneleaf.us': 0.09; 'from:name:ethan furman': 0.09; 'message-id:@stoneleaf.us': 0.09; 'received:gator410.hostgator.com': 0.09; 'thoughts?': 0.09; '~ethan~': 0.09; 'this:': 0.10; 'wrote:': 0.14; '"__main__":': 0.16; 'received:72.11': 0.16; 'received:72.11.125': 0.16; 'received:72.11.125.166': 0.16; 'received:gateway01.websitewelcome.com': 0.16; 'header:In-Reply- To:1': 0.21; 'stuff': 0.22; "doesn't": 0.25; 'function': 0.25; 'thanks.': 0.27; 'import': 0.29; 'work:': 0.29; 'module': 0.30; 'to:addr:python-list': 0.33; 'break': 0.33; 'too': 0.33; 'rather': 0.34; 'file': 0.34; 'header:User-Agent:1': 0.35; 'skip:" 10': 0.35; 'something': 0.37; 'eric': 0.38; 'subject:: ': 0.38; 'some': 0.38; 'skip:s 20': 0.39; 'to:addr:python.org': 0.39; 'received:websitewelcome.com': 0.67; 'received:69.93': 0.67; 'snow': 0.91 Date: Tue, 14 Jun 2011 16:28:37 -0700 From: Ethan Furman User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: python-list@python.org Subject: Re: break in a module References: <4DF7E75E.9000907@mrabarnett.plus.com> In-Reply-To: <4DF7E75E.9000907@mrabarnett.plus.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - gator410.hostgator.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - stoneleaf.us X-BWhitelist: no X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: mail.admailinc.com ([192.168.10.136]) [72.11.125.166]:1728 X-Source-Auth: ethan+stoneleaf.us X-Email-Count: 1 X-Source-Cap: dG9idWs7dG9idWs7Z2F0b3I0MTAuaG9zdGdhdG9yLmNvbQ== X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 31 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1308093309 news.xs4all.nl 49180 [::ffff:82.94.164.166]:53846 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:7643 MRAB wrote: > On 14/06/2011 23:28, Eric Snow wrote: >> I would rather have something like this: >> >> """some module""" >> >> import sys >> import importlib >> import util # some utility module somewhere... >> >> if __name__ == "__main__": >> name = util.get_module_name(sys.modules[__name__]) >> module = importlib.import_module(name) >> sys.modules[__name__] = module >> break >> >> # do my normal stuff at 0 indentation level >> >> So, any thoughts? Thanks. >> > To me, the obvious choice would be "return", not "break". To me, too -- too bad it doesn't work: c:\temp>\python32\python early_abort.py File "early_abort.py", line 7 return ^ SyntaxError: 'return' outside function ~Ethan~