Every line of 'python break out of function' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
7 def test_break_on_function(self): 8 9 return 10 ############################## 11 # We had a bug where 'next' (no number) after 12 # a hit breakpoint wouldn't 'next'. So test for that 13 # in addition to the break on a function name. 14 cmds = ['break foo', 'continue', 'next', 'continue'] 15 d = strarray_setup(cmds) 16 d.core.start() 17 ############################## 18 19 def foo(): 20 print('foo here') 21 return 22 foo() 23 y = 6 # NOQA 24 ############################## 25 d.core.stop() 26 27 out = ['-- foo()', 28 'xx def foo():', 29 "-- print('foo here')"] 30 compare_output(self, out, d, cmds) 31 32 return