File: _test_py38.py

package info (click to toggle)
python-makefun 1.15.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: python: 2,384; makefile: 2
file content (4 lines) | stat: -rw-r--r-- 108 bytes parent folder | download
1
2
3
4
def make_pos_only_f():
    def f(a, b, c, /, *, d, **e):
        return a + b + c + d + sum(e)
    return f