Add PyFunction::nargs field

pull/335/head
A. R. Shajii 2023-02-10 11:04:59 -05:00
parent 47949ed17f
commit c467645aec
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ struct PyFunction {
std::string doc;
Func *func = nullptr;
Type type = Type::TOPLEVEL;
int nargs = 0;
};
struct PyMember {