Commit b93d3f4b authored by Stefan Behnel's avatar Stefan Behnel

fix C comment in utility code that didn't get discarded from C code

parent 294f23d8
......@@ -38,7 +38,8 @@ typedef struct {
PyObject *classobj;
PyObject *yieldfrom;
int resume_label;
char is_running; // using T_BOOL for property below requires char value
// using T_BOOL for property below requires char value
char is_running;
} __pyx_GeneratorObject;
static __pyx_GeneratorObject *__Pyx_Generator_New(__pyx_generator_body_t body,
......
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