File: nautilus-python-object.c
Function: nautilus_python_boxed_new
Error: dereferencing NULL (self->gtype) at nautilus-python-object.c:133
128 static PyObject *
129 nautilus_python_boxed_new (PyTypeObject *type, gpointer boxed, gboolean free_on_dealloc)
130 {
131 	PyGBoxed *self = (PyGBoxed *) type->tp_alloc (type, 0);
when call fails
132 	self->gtype = pyg_type_from_object ( (PyObject *) type);
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:209 as non-NULL
calling unknown GType (*) (struct PyObject *) from nautilus-python-object.c:132
dereferencing NULL (self->gtype) at nautilus-python-object.c:133
133 	self->boxed = boxed;
134 	self->free_on_dealloc = free_on_dealloc;
135 	
136 	return (PyObject *) self;
137 }