From eaec0acf0d93b1d8320c8be8fb374726bbfa13da Mon Sep 17 00:00:00 2001 From: Shaikh Ubaid Date: Thu, 24 Aug 2023 22:01:09 +0530 Subject: [PATCH] ASR: Support TypeParameter in numpy2lpythontypes --- src/lpython/semantics/python_ast_to_asr.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lpython/semantics/python_ast_to_asr.cpp b/src/lpython/semantics/python_ast_to_asr.cpp index af3828ca7c..ef8d7a0b29 100644 --- a/src/lpython/semantics/python_ast_to_asr.cpp +++ b/src/lpython/semantics/python_ast_to_asr.cpp @@ -525,6 +525,7 @@ class CommonVisitor : public AST::BaseVisitor { {"complex64", "c32"}, {"complex128", "c64"}, {"complex_", "c64"}, + {"object", "T"} }; CommonVisitor(Allocator &al, LocationManager &lm, SymbolTable *symbol_table,