PY-61854 PEP 695 Type Parameter Syntax: Formatting

GitOrigin-RevId: 272f956033d82626d7cf689aa561cdeab3f951da
This commit is contained in:
Daniil Kalinin
2023-08-29 13:54:47 +02:00
committed by intellij-monorepo-bot
parent 4b6848cb9f
commit 3a70f1d22d
15 changed files with 95 additions and 3 deletions

View File

@@ -1336,4 +1336,29 @@ public abstract class PythonCommonFormatterTest extends PythonCommonTestCase {
public void testNoAlignmentForSplitByBackslashesTupleInYieldStatement() {
doTest();
}
// PY-61854
public void testSpaceAfterTypeKeywordInTypeAliasStatement() {
doTest();
}
// PY-61854
public void testSpaceAfterCommaInTypeParameterList() {
doTest();
}
// PY-61854
public void testAlignmentInMultilineTypeParameterListInTypeAliasStatement() {
doTest();
}
// PY-61854
public void testAlignmentInMultilineTypeParameterListInFunctionDefinition() {
doTest();
}
// PY-61854
public void testAlignmentInMultilineTypeParameterListInClassDefinition() {
doTest();
}
}