Package org.python.core
Interface PyBuiltinCallable.Info
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
PyBuiltinCallable.DefaultInfo,PyClassMethodDescr,PyMethodDescr
- Enclosing class:
- PyBuiltinCallable
public static interface PyBuiltinCallable.Info extends java.io.Serializable
-
-
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)
-
-