File: python-virtkey.c
Function: initvirtkey
Error: calling PyDict_SetItemString with NULL as argument 3 (virtkey_error.1) at python-virtkey.c:951
936 void initvirtkey()
937 { 
938     PyObject *m, *d;
939 
940     m = Py_InitModule("virtkey", methods);
941     d = PyModule_GetDict(m);
when Py_InitModule4_64() succeeds
942 
943     /* initialize module variables/constants */
944 
945 #if PYTHON_API_VERSION >= 1007
946     virtkey_error = PyErr_NewException("virtkey.error", NULL, NULL);
947 #else
when PyErr_NewException() fails
948     virtkey_error = Py_BuildValue("s", "virtkey.error");
949 #endif
950     PyDict_SetItemString(d, "error", virtkey_error);
951 }
calling PyDict_SetItemString with NULL as argument 3 (virtkey_error.1) at python-virtkey.c:951
found 1 similar trace(s) to this
952