Feature
The typing module needs to be updated to 3.12. It seems that it was last updated to 3.9, so it's missing several major versions worth of features, like Unpack, generics, and type aliases using the type keyword.
Not having these typing features impedes the process of updating modules that use, which presumably will be most new stuff going forward.
I estimate that updating will require:
- Moving some abstract base classes from
typing.py into a new native module typing.rs, specifically TypeVar, ParamSpec, TypeVarTuple, ParamSpecArgs, ParamSpecKwards, TypeAliasType, and Generic.
Adding new syntax like type type aliases and generics to the parser. It seems like this is already included in https://github.com/RustPython/Parser/blob/main/parser/src/python.lalrpop
- Adding new instructions which generate/consume type information to
compiler.rs and frame.rs. For example, def foo[T](x: T): ... must create a new TypeVar(T) and inject it into the correct scope so that it is available as an argument annotation. This requires a new instruction defined in bytecode.rs which is emitted by compiler.rs and consumed by frame.rs.
- Copying
typing.py and test_typing.py from the CPython code base.
Python Documentation or reference to CPython source code
https://docs.python.org/3/library/typing.html
Feature
The
typingmodule needs to be updated to 3.12. It seems that it was last updated to 3.9, so it's missing several major versions worth of features, like Unpack, generics, and type aliases using thetypekeyword.Not having these typing features impedes the process of updating modules that use, which presumably will be most new stuff going forward.
I estimate that updating will require:
typing.pyinto a new native moduletyping.rs, specificallyTypeVar,ParamSpec,TypeVarTuple,ParamSpecArgs,ParamSpecKwards,TypeAliasType, andGeneric.Adding new syntax likeIt seems like this is already included in https://github.com/RustPython/Parser/blob/main/parser/src/python.lalrpoptypetype aliases and generics to the parser.compiler.rsandframe.rs. For example,def foo[T](x: T): ...must create a newTypeVar(T)and inject it into the correct scope so that it is available as an argument annotation. This requires a new instruction defined inbytecode.rswhich is emitted bycompiler.rsand consumed byframe.rs.typing.pyandtest_typing.pyfrom the CPython code base.Python Documentation or reference to CPython source code
https://docs.python.org/3/library/typing.html