I\'d like to point to a function that does nothing:
def identity(*args)
return args
my use case is something like this
Doing some more research, there is none, a feature was asked in issue 1673203 And from Raymond Hettinger said there won't be:
Better to let people write their own trivial pass-throughs and think about the signature and time costs.
So a better way to do it is actually (a lambda avoids naming the function):
_ = lambda *args: args
OR
_ = lambda x: x