interpret_demo: add typing.Literal

This commit is contained in:
Sebastien Bourdeauducq 2023-12-18 08:50:49 +08:00
parent 8886964776
commit d47534e2ad
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,7 @@ import pathlib
from numpy import int32, int64, uint32, uint64 from numpy import int32, int64, uint32, uint64
from scipy import special from scipy import special
from typing import TypeVar, Generic from typing import TypeVar, Generic, Literal
T = TypeVar('T') T = TypeVar('T')
class Option(Generic[T]): class Option(Generic[T]):
@ -107,6 +107,7 @@ def patch(module):
module.TypeVar = TypeVar module.TypeVar = TypeVar
module.ConstGeneric = ConstGeneric module.ConstGeneric = ConstGeneric
module.Generic = Generic module.Generic = Generic
module.Literal = Literal
module.extern = extern module.extern = extern
module.Option = Option module.Option = Option
module.Some = Some module.Some = Some