Commit b6968302 authored by Stefan Behnel's avatar Stefan Behnel

fix C++ warnings

--HG--
extra : amend_source : 04828c16faf5af6bf7203a7ae59ad1f365cb5699
parent a96882e1
......@@ -596,9 +596,9 @@ __Pyx_Generator_set_qualname(__pyx_GeneratorObject *self, PyObject *value)
static PyGetSetDef __pyx_Generator_getsets[] = {
{(char *) "__name__", (getter)__Pyx_Generator_get_name, (setter)__Pyx_Generator_set_name,
PyDoc_STR("name of the generator"), 0},
(char*) PyDoc_STR("name of the generator"), 0},
{(char *) "__qualname__", (getter)__Pyx_Generator_get_qualname, (setter)__Pyx_Generator_set_qualname,
PyDoc_STR("qualified name of the generator"), 0},
(char*) PyDoc_STR("qualified name of the generator"), 0},
{0, 0, 0, 0, 0}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment