Marcin ‘Qrczak’ Kowalczyk wrote: > BTW, applying PyMethod_Type to 3 arguments crashes Python3. I think > this line is the culprit (classobject.c): > > if (!PyArg_UnpackTuple(args, "method", 2, 3, > &func, &self)) > > Should be 2 instead of 3. There used to be an extra parameter. Thanks for the hint. I've fixed the bug in r59428. Christian