示例#1
0
文件: gnarl.py 项目: aperezdc/gnarl
 def today(cls):
     from delorean.interface import now
     d = now()
     d.truncate("day")
     return cls(d.datetime, d.timezone)
示例#2
0
文件: gnarl.py 项目: aperezdc/gnarl
 def now(cls):
     from delorean.interface import now
     d = now()
     d.truncate("second")
     return cls(d.datetime, d.timezone)