Files
openide/python/testData/paramInfo/LongStarSlashParameter.py
Elizaveta Shashkova a3af1d900c PY-46053 Huge Parameter Info popup
GitOrigin-RevId: 039b51b225ec6eb20b77305b47cc71d180398c79
2022-10-15 00:15:54 +00:00

16 lines
340 B
Python

from typing import Literal
Upper = Literal["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"]
def star_slash(a, /, b: Upper, *, c: Upper):
pass
star_slash(1, <arg1>)
star_slash(1, b=<arg2>)
star_slash(1, b="A", <arg3>)
star_slash(1, b="A", c=<arg4>)