Lines Matching refs:f
4 def f(): function
15 f()
18 def f(): function
28 f()
31 def f(): function
42 print(f())
45 def f(): function
59 print(f())
62 def f(): function
76 print(f())
79 def f(arg): function
97 f(0) # no exception, else should execute
98 f(1) # exception caught, else should be skipped
99 f(2) # exception not caught, finally swallows exception, else should be skipped