本文整理汇总了Python中Time.setcurtime方法的典型用法代码示例。如果您正苦于以下问题:Python Time.setcurtime方法的具体用法?Python Time.setcurtime怎么用?Python Time.setcurtime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Time
的用法示例。
在下文中一共展示了Time.setcurtime方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: misc_setup
# 需要导入模块: import Time [as 别名]
# 或者: from Time import setcurtime [as 别名]
def misc_setup(rps):
"""Set default change ownership flag, umask, relay regexps"""
os.umask(077)
Time.setcurtime(Globals.current_time)
SetConnections.UpdateGlobal("client_conn", Globals.local_connection)
Globals.postset_regexp('no_compression_regexp',
Globals.no_compression_regexp_string)
for conn in Globals.connections:
conn.robust.install_signal_handlers()
conn.Hardlink.initialize_dictionaries()
示例2: set_compatible_timestamps
# 需要导入模块: import Time [as 别名]
# 或者: from Time import setcurtime [as 别名]
def set_compatible_timestamps(self):
if Globals.chars_to_quote.find(":") > -1:
SetConnections.UpdateGlobal('use_compatible_timestamps', 1)
Time.setcurtime(Time.curtime) # update Time.curtimestr on all conns
log.Log("Enabled use_compatible_timestamps", 4)