mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
340 B
Python
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>) |