Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!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; 'finally:': 0.07; 'none:': 0.07; 'sys': 0.07; 'none)': 0.09; 'try:': 0.09; 'cc:addr:python- list': 0.11; 'def': 0.12; 'arg):': 0.16; 'foo()': 0.16; 'foo():': 0.16; 'frame,': 0.16; 'function;': 0.16; 'roy': 0.16; 'skipped': 0.16; 'tracing': 0.16; 'true:': 0.16; 'valueerror': 0.16; 'sender:addr:gmail.com': 0.17; 'wrote:': 0.18; 'finished': 0.19; 'import': 0.22; 'cc:addr:python.org': 0.22; 'skip': 0.24; '---': 0.24; 'cc:2**0': 0.24; 'pass': 0.26; 'subject:/': 0.26; 'header :In-Reply-To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; 'trace': 0.31; 'except': 0.35; 'received:google.com': 0.35; 'event,': 0.36; 'turn': 0.37; 'remove': 0.60; "you're": 0.61; 'finally': 0.65; 'smith': 0.68; 'yourself': 0.78; 'details...': 0.84; 'subject:try': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=SKeKWA2llY3mu3iwwEWprTPM8jdpVp3tTeSvwt5Fpl4=; b=X6OPK5Ta0XNcgq0Gcd0WB1uU4KUC/Se9le8f0HMm10K4DZ1w3M57bj+p6qW7l0o7ui 1R6KoniEb/Cq+os7aZzu0f9c5ABfBDFYTUMbDk4kA2Wwf+Ranu2maj0bVytqo0NyI6jY dObD4jM3ZH2kCK8Jv5Fkc7baPSx7+ghUgl8thKKSDYtWWmJIu4hAsF8RIL84BbaNxw+c Vk8/ORPCiAMyzoTkUco6Q/wA9SgkEZmEQewsFz8aQmfb9/4HWKM7qom/HNNLvKQfRWUt jlg0z6sVyB87A5WVeZxzlrsOfcXjTu94Wj3tHYX6IyLoVfoaencfqTJ6pYdfi+SEZ19s 7NJg== X-Received: by 10.194.57.208 with SMTP id k16mr24539374wjq.51.1402250741816; Sun, 08 Jun 2014 11:05:41 -0700 (PDT) MIME-Version: 1.0 Sender: joshua.landau.ws@gmail.com In-Reply-To: References: <0a89c96d-de62-42ad-be48-6107ce10d215@googlegroups.com> From: Joshua Landau Date: Sun, 8 Jun 2014 19:05:01 +0100 X-Google-Sender-Auth: 6iGuxeqr8shUo9YhNNA8uHhK4Ig Subject: Re: try/except/finally To: Roy Smith Content-Type: text/plain; charset=UTF-8 Cc: python-list 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: 51 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1402250748 news.xs4all.nl 2834 [2001:888:2000:d::a6]:44896 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:72985 On 6 June 2014 18:39, Roy Smith wrote: > > The only way I can think of to bypass a finally block would be to call > os._exit(), or send yourself a kill signal. If you're willing to use implementation details... --- # BreakN.py import sys # Turn tracing on if it is off if sys.gettrace() is None: sys.settrace(lambda frame, event, arg: None) def break_n(n): frame = sys._getframe().f_back for _ in range(n): frame.f_trace = skip_function_tracer frame = frame.f_back def skip_function_tracer(frame, event, arg): try: # Skip this line while True: frame.f_lineno += 1 except ValueError as e: # Finished tracing function; remove trace pass --- # Thing_you_run.py from BreakN import break_n def foo(): try: print("I am not skipped") break_n(1) print("I am skipped") ... finally: print("I am skipped") ... foo() #>>> I am not skipped