Skip to content

Commit b025cb7

Browse files
committed
progress on TypeAlias
1 parent 475dc15 commit b025cb7

5 files changed

Lines changed: 149 additions & 136 deletions

File tree

toolFactory/Z0Z_hardcoded.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
sys_version_infoMinimum: tuple[int, int] = (3, 10)
1111
sys_version_infoTarget: tuple[int, int] = (3, 13)
1212

13-
listASTClassesPostPythonVersionMinimumHARDCODED: list[ast_Identifier] = ['astDOTParamSpec', 'astDOTTryStar', 'astDOTTypeAlias', 'astDOTTypeVar', 'astDOTTypeVarTuple', 'astDOTtype_param']
13+
listASTClassesPostPythonVersionMinimumHARDCODED: list[str] = ['astDOTParamSpec', 'astDOTTryStar', 'astDOTTypeAlias', 'astDOTTypeVar', 'astDOTTypeVarTuple', 'astDOTtype_param']
1414
listASTClassesPostPythonVersionMinimum = listASTClassesPostPythonVersionMinimumHARDCODED
1515

1616
listASTSubclassesHARDCODED: list[str] = ['_Slice', 'AST', 'binaryop', 'boolop', 'cmpop', 'excepthandler', 'expr_context', 'expr', 'mod', 'operator', 'pattern', 'stmt', 'type_ignore', 'type_param', 'unaryop',]
@@ -20,9 +20,9 @@ class FREAKOUT(Exception):
2020
pass
2121

2222
# filesystem and namespace ===============================================
23-
packageName: ast_Identifier = 'astToolkit'
23+
packageName: str = 'astToolkit'
2424
moduleIdentifierPrefix: str = '_tool'
25-
keywordArgumentsIdentifier: ast_Identifier = 'keywordArguments'
25+
keywordArgumentsIdentifier: str = 'keywordArguments'
2626

2727
pathRoot = Path('/apps') / packageName
2828
pathPackage = pathRoot / packageName

0 commit comments

Comments
 (0)