File: call.py

package info (click to toggle)
python-pegen 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,980 kB
  • sloc: python: 15,064; makefile: 89
file content (16 lines) | stat: -rw-r--r-- 166 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
a = ()
b = {}
f()
f(b)
f(b=c)
f(*a)
f(c, *a)
f(c=1, *b)
f(*a, c=1)
f(**b)
f(c, *a, **b)
f(c, *a, x, **b)
f(c, a=1, **b)
f(a := 1)
f(**b, a=1)
f(i for i in range(10))