Files
openide/python/testData/refactoring/introduceVariable/argumentToUnnamedParameter.py
Semyon Proshev a799c255fe Fix introducing variable for argument passed to unnamed parameter (PY-37555)
GitOrigin-RevId: 6a595635c62bac01e6bdb6cbbd284eb52a64f16f
2019-09-16 16:01:43 +00:00

3 lines
90 B
Python

from typing import NewType
SomeType = NewType("SomeType", bytes)
SomeType(b"va<caret>lue")