def strlocaltime(epoch): """Convert an epoch time to a string date and time in local time zone""" try: ret = _stock._strlocaltime(epoch) except _stock._ElogException, _e: _raise_elog(_e)
def strlocaltime(epoch): """Convert an epoch time to a string date and time in local time zone""" return _stock._strlocaltime(epoch)