-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Labels
High effort πDifficult solution or problem to solveDifficult solution or problem to solveNeeds decision πNeeds a decision before implemention or rejectionNeeds a decision before implemention or rejectionNeeds design proposal πThis is a huge feature, some discussion should happen before a PR is proposedThis is a huge feature, some discussion should happen before a PR is proposedProposal π¨
Milestone
Description
Current problem
cython can't using super() in list comprehension, assign a variable will fix this.
Desired solution
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.
Additional context
No response
Metadata
Metadata
Assignees
Labels
High effort πDifficult solution or problem to solveDifficult solution or problem to solveNeeds decision πNeeds a decision before implemention or rejectionNeeds a decision before implemention or rejectionNeeds design proposal πThis is a huge feature, some discussion should happen before a PR is proposedThis is a huge feature, some discussion should happen before a PR is proposedProposal π¨