I'm finding that getargs() is dumping core because the "args"
parameter is NULL. I can reproduce this in any module, but
for example, take the module grp:
>>> import grp
>>> grp.getgrgid()
The function is *supposed* to take an integer. In the routine
grp_getgrgid(self, args) in grpmodule.c, "args" is passed a NULL
pointer, which is causing a segmentation fault in convertsimple,
which is called from getargs(args, ...).
Shouldn't this be complaining about insufficient arguments?
-Jay