Home | History | Annotate | Download | only in Lib

Lines Matching refs:time_

1544     def set_from(self, from_, time_=None):

1545 """Set "From " line, formatting and appending time_ if specified."""
1546 if time_ is not None:
1547 if time_ is True:
1548 time_ = time.gmtime()
1549 from_ += ' ' + time.asctime(time_)