this(TYPE);
}
@ExposedNew
@ExposedMethod
public void Call___init__(PyObject[] args, String[] keywords) {
ArgParser ap = new ArgParser("Call", args, keywords, new String[]
{"func", "args", "keywords", "starargs", "kwargs", "lineno", "col_offset"}, 5, true);
setFunc(ap.getPyObject(0, Py.None));
setArgs(ap.getPyObject(1, Py.None));
setKeywords(ap.getPyObject(2, Py.None));
setStarargs(ap.getPyObject(3, Py.None));
setKwargs(ap.getPyObject(4, Py.None));
int lin = ap.getInt(5, -1);
if (lin != -1) {
setLineno(lin);
}
int col = ap.getInt(6, -1);
if (col != -1) {
setLineno(col);
}
}