Package org.python.core
Interface PyBuiltinFunction.Info
-
- All Known Implementing Classes:
PyBuiltinFunction.DefaultInfo,PyClassMethodDescr,PyMethodDescr
- Enclosing class:
- PyBuiltinFunction
public static interface PyBuiltinFunction.Info
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetMaxargs()intgetMinargs()java.lang.StringgetName()PyExceptionunexpectedCall(int nargs, boolean keywords)
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getMaxargs
int getMaxargs()
-
getMinargs
int getMinargs()
-
unexpectedCall
PyException unexpectedCall(int nargs, boolean keywords)
-
-