Files
openide/python/testData/quickdoc/HomogeneousTuple.py
fitermay aab0d3e87a PY-19826 Fixed: Generic type of list not inferred when created from tuple
Inherit PyTupleType from PyCollectionType so that getElementTypes().get(i) returns type of 'i'-th element in the tuple
2016-10-13 21:28:18 +03:00

4 lines
66 B
Python

def get_tuple() -> tuple[str, ...]:
pass
<the_ref>get_tuple()