Home | History | Annotate | Download | only in python2.7

Lines Matching refs:time_

1594     def set_from(self, from_, time_=None):
1595 """Set "From " line, formatting and appending time_ if specified."""
1596 if time_ is not None:
1597 if time_ is True:
1598 time_ = time.gmtime()
1599 from_ += ' ' + time.asctime(time_)