This means that you have created an extension module named "yourmodule", but your module init function does not initialize with that name.
Every module init function will have a line similar to:
module = Py_InitModule("yourmodule", yourmodule_functions);
If the string passed to this function is not the same name as your extension module, the SystemError exception will be raised.
CATEGORY: extending