Lines Matching defs:woohoo
64 def woohoo():
68 with woohoo() as x:
77 def woohoo():
84 with woohoo() as x:
166 def woohoo():
173 with woohoo() as x:
182 def woohoo():
191 with woohoo():
203 def woohoo():
208 woohoo = locals['woohoo']
212 with woohoo():
273 def woohoo(self, func, args, kwds):
275 with woohoo(self=11, func=22, args=33, kwds=44) as target:
283 def woohoo(a, b):
292 with woohoo(A(), b=A()):
297 def woohoo(a, *, b):
301 woohoo()
303 woohoo(3, 5)
305 woohoo(b=3)
310 def woohoo():
318 @woohoo()
594 def woohoo(y):
600 @woohoo(1)