Open gshmu opened 1 year ago
cython can't using super() in list comprehension, assign a variable will fix this.
broken
class Any: def func(self): return [_ for _ in super().func()]
fixed
class Any: def func(self): var = super().func() return [_ for _ in var]
please add feature to check the cython broken.
No response
We don't officially support Cython do we? I feel like this warrants a plugin.
Cython
pylint do checks very well, I think add flag to check cython will be better.
Current problem
cython can't using super() in list comprehension, assign a variable will fix this.
Desired solution
broken
fixed
please add feature to check the cython broken.
Additional context
No response