本文整理汇总了Python中mx.DateTime.Date方法的典型用法代码示例。如果您正苦于以下问题:Python DateTime.Date方法的具体用法?Python DateTime.Date怎么用?Python DateTime.Date使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mx.DateTime
的用法示例。
在下文中一共展示了DateTime.Date方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_type_roundtrip_date
# 需要导入模块: from mx import DateTime [as 别名]
# 或者: from mx.DateTime import Date [as 别名]
def test_type_roundtrip_date(self):
from mx.DateTime import Date
self._test_type_roundtrip(Date(2010, 5, 3))
示例2: test_type_roundtrip_date_array
# 需要导入模块: from mx import DateTime [as 别名]
# 或者: from mx.DateTime import Date [as 别名]
def test_type_roundtrip_date_array(self):
from mx.DateTime import Date
self._test_type_roundtrip_array(Date(2010, 5, 3))
示例3: test_type_roundtrip_date
# 需要导入模块: from mx import DateTime [as 别名]
# 或者: from mx.DateTime import Date [as 别名]
def test_type_roundtrip_date(self):
from mx.DateTime import Date
self._test_type_roundtrip(Date(2010,5,3))
示例4: test_type_roundtrip_date_array
# 需要导入模块: from mx import DateTime [as 别名]
# 或者: from mx.DateTime import Date [as 别名]
def test_type_roundtrip_date_array(self):
from mx.DateTime import Date
self._test_type_roundtrip_array(Date(2010,5,3))
示例5: datefactory
# 需要导入模块: from mx import DateTime [as 别名]
# 或者: from mx.DateTime import Date [as 别名]
def datefactory(year, month, day, sampledate):
# assume date is either a python datetime or a mx.DateTime object
if isinstance(sampledate, datetime):
return datetime(year, month, day)
if isinstance(sampledate, date):
return date(year, month, day)
return Date(year, month, day)