Commit aefd0a70 authored by Stefan Behnel's avatar Stefan Behnel

fix typos

parent 34c4dad1
......@@ -638,7 +638,7 @@ static PyTypeObject __pyx_CyFunctionType_type = {
(traverseproc) __Pyx_CyFunction_traverse, /*tp_traverse*/
(inquiry) __Pyx_CyFunction_clear, /*tp_clear*/
0, /*tp_richcompare*/
offsetof(__pyx_CyFunctionObject, func_weakreflist), /* tp_weaklistoffse */
offsetof(__pyx_CyFunctionObject, func_weakreflist), /* tp_weaklistoffset */
0, /*tp_iter*/
0, /*tp_iternext*/
__pyx_CyFunction_methods, /*tp_methods*/
......
......@@ -645,7 +645,7 @@ static PyTypeObject __pyx_GeneratorType_type = {
(traverseproc) __Pyx_Generator_traverse, /*tp_traverse*/
0, /*tp_clear*/
0, /*tp_richcompare*/
offsetof(__pyx_GeneratorObject, gi_weakreflist), /* tp_weaklistoffse */
offsetof(__pyx_GeneratorObject, gi_weakreflist), /* tp_weaklistoffset */
0, /*tp_iter*/
(iternextfunc) __Pyx_Generator_Next, /*tp_iternext*/
__pyx_Generator_methods, /*tp_methods*/
......
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