本文整理匯總了Python中time.microsecond方法的典型用法代碼示例。如果您正苦於以下問題:Python time.microsecond方法的具體用法?Python time.microsecond怎麽用?Python time.microsecond使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類time
的用法示例。
在下文中一共展示了time.microsecond方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: combine
# 需要導入模塊: import time [as 別名]
# 或者: from time import microsecond [as 別名]
def combine(self, date, time):
return datetime(date.year, date.month, date.day, time.hour, time.minute, time.microsecond, time.tzinfo)
示例2: new_datetime
# 需要導入模塊: import time [as 別名]
# 或者: from time import microsecond [as 別名]
def new_datetime(d):
"""
Generate a safe datetime from a datetime.date or datetime.datetime object.
"""
kw = [d.year, d.month, d.day]
if isinstance(d, real_datetime):
kw.extend([d.hour, d.minute, d.second, d.microsecond, d.tzinfo])
return datetime(*kw)
# This library does not support strftime's "%s" or "%y" format strings.
# Allowed if there's an even number of "%"s because they are escaped.
示例3: _bump_up_time_by_microsecond
# 需要導入模塊: import time [as 別名]
# 或者: from time import microsecond [as 別名]
def _bump_up_time_by_microsecond(time):
"""
Helper function bumping up the given datetime.time by a microsecond,
cycling around silently to 00:00:00.0 in case of an overflow.
@param time: Time object.
@type time: B{datetime}.I{time}
@return: Time object.
@rtype: B{datetime}.I{time}
"""
dt = datetime.datetime(2000, 1, 1, time.hour, time.minute,
time.second, time.microsecond)
dt += datetime.timedelta(microseconds=1)
return dt.time()
示例4: _time_from_match
# 需要導入模塊: import time [as 別名]
# 或者: from time import microsecond [as 別名]
def _time_from_match(match_object):
"""
Create a time object from a regular expression match.
Returns the time object and information whether the resulting time should
be bumped up by one microsecond due to microsecond rounding.
Subsecond information is rounded to microseconds due to a restriction in
the python datetime.datetime/time implementation.
The regular expression match is expected to be from _RE_DATETIME or
_RE_TIME.
@param match_object: The regular expression match.
@type match_object: B{re}.I{MatchObject}
@return: Time object + rounding flag.
@rtype: tuple of B{datetime}.I{time} and bool
"""
hour = int(match_object.group('hour'))
minute = int(match_object.group('minute'))
second = int(match_object.group('second'))
subsecond = match_object.group('subsecond')
round_up = False
microsecond = 0
if subsecond:
round_up = len(subsecond) > 6 and int(subsecond[6]) >= 5
subsecond = subsecond[:6]
microsecond = int(subsecond + "0" * (6 - len(subsecond)))
return datetime.time(hour, minute, second, microsecond), round_up
示例5: today
# 需要導入模塊: import time [as 別名]
# 或者: from time import microsecond [as 別名]
def today(timezone=None, format=None):
"""Returns today's date at midnight as a DADateTime object."""
ensure_definition(timezone, format)
if timezone is None:
timezone = get_default_timezone()
val = pytz.utc.localize(datetime.datetime.utcnow()).astimezone(pytz.timezone(timezone))
if format is not None:
return dd(val.replace(hour=0, minute=0, second=0, microsecond=0)).format_date(format)
else:
return dd(val.replace(hour=0, minute=0, second=0, microsecond=0))
示例6: replace_time
# 需要導入模塊: import time [as 別名]
# 或者: from time import microsecond [as 別名]
def replace_time(self, time):
return self.replace(hour=time.hour, minute=time.minute, second=time.second, microsecond=time.microsecond)
示例7: dd
# 需要導入模塊: import time [as 別名]
# 或者: from time import microsecond [as 別名]
def dd(obj):
if isinstance(obj, DADateTime):
return obj
return DADateTime(obj.year, month=obj.month, day=obj.day, hour=obj.hour, minute=obj.minute, second=obj.second, microsecond=obj.microsecond, tzinfo=obj.tzinfo)
示例8: dt
# 需要導入模塊: import time [as 別名]
# 或者: from time import microsecond [as 別名]
def dt(obj):
return datetime.datetime(obj.year, obj.month, obj.day, obj.hour, obj.minute, obj.second, obj.microsecond, obj.tzinfo)