I'd like to point to a function that does nothing:
def identity(*args)
    return args
my use case is something like this
try:
    gettext.find(...)
    ...
    _ = gettext.gettext
else:
    _ = identity
Of course, I could use the identity defined above, but a built-in would certainly run faster (and avoid bugs introduced by my own).
Apparently, map and filter use None for the identity, but this is specific to their implementations.
>>> _=None
>>> _("hello")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'NoneType' object is not callable
 
     
     
     
     
     
     
     
     
     
     
     
    