MCPcopy
hub / github.com/rocky/python-uncompyle6 / no_apply

Function no_apply

test/decompyle/test_applyEquiv.py:15–28  ·  view source on GitHub ↗
(*args, **kwargs)

Source from the content-addressed store, hash-verified

13 print args
14
15def no_apply(*args, **kwargs):
16 print args
17 print kwargs.items()
18 argsfunc(34)
19 foo = argsfunc(*args)
20 argsfunc(*args)
21 argsfunc(34, *args)
22 kwfunc(**kwargs)
23 kwfunc(x=11, **kwargs)
24 no_apply(*args, **kwargs)
25 no_apply(34, *args, **kwargs)
26 no_apply(x=11, *args, **kwargs)
27 no_apply(34, x=11, *args, **kwargs)
28 no_apply(42, 34, x=11, *args, **kwargs)
29
30no_apply(1,2,4,8,a=2,b=3,c=5)

Callers 1

test_applyEquiv.pyFile · 0.70

Calls 3

argsfuncFunction · 0.70
kwfuncFunction · 0.70
itemsMethod · 0.45

Tested by

no test coverage detected