File: unix/cdrommodule.c
Function: initcdrom
Error: calling PyDict_SetItemString with NULL as argument 3 (cdrom_error.1) at unix/cdrommodule.c:326
318 void initcdrom(void)
319 {
320     PyObject *module, *dict;
321 
322     module = Py_InitModule("cdrom", cdrom_methods);
323     dict = PyModule_GetDict(module);
when Py_InitModule4_64() succeeds
324     cdrom_error = PyErr_NewException("cdrom.error", NULL, NULL);
325     PyDict_SetItemString(dict, "error", cdrom_error);
when PyErr_NewException() fails
326 }
calling PyDict_SetItemString with NULL as argument 3 (cdrom_error.1) at unix/cdrommodule.c:326
found 1 similar trace(s) to this
327