> What does this Python error message mean? I get this message when > I pass a list to the IIBucket() instead of a dictionary ;-) It's a bug in the extension. You are probably calling PyArg_ParseTuple() in a function whose PyMethodDef entry doesn't specify METH_VARARGS. --Guido van Rossum (home page: http://www.python.org/~guido/)