-
-
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 📨