Hacker News new | ask | show | jobs
by MBlume 4467 days ago
Python doesn't have language support for the idiom -- trying to evaluate

lambda _, _: None

gives

SyntaxError: duplicate argument '_' in function definition

but tools like pylint will silence unused-variable warnings if the variable starts with '_'.

1 comments

Thanks for the verification. But even a bit of syntactic convention won't be enough if python create a unnecessary binding.