本文整理汇总了Python中lsst.daf.base.DateTime.toPython方法的典型用法代码示例。如果您正苦于以下问题:Python DateTime.toPython方法的具体用法?Python DateTime.toPython怎么用?Python DateTime.toPython使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lsst.daf.base.DateTime
的用法示例。
在下文中一共展示了DateTime.toPython方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testConvert
# 需要导入模块: from lsst.daf.base import DateTime [as 别名]
# 或者: from lsst.daf.base.DateTime import toPython [as 别名]
def testConvert(self):
year = 2012
month = 7
day = 19
hour = 18
minute = 29
second = 33
ts = DateTime(year, month, day, hour, minute, second, DateTime.UTC)
dt = ts.toPython(DateTime.UTC)
self.assertEqual(dt.year, year)
self.assertEqual(dt.month, month)
self.assertEqual(dt.day, day)
self.assertEqual(dt.hour, hour)
self.assertEqual(dt.minute, minute)
self.assertEqual(dt.second, second)