def host(self):
""" Return user host """
_ = self._request.getText
host = self.isCurrentUser() and self._cfg.show_hosts and self._request.remote_addr
return host or _("<unknown>")
for this code , _ is represent the getText function of _request . and i found _ sometimes represent for the last output of the command .
but i wonder why not use self._request.getText("") directly. and if i replace the _ with another variable,it still work . is there any difference ?
thanks for answer me .