本文整理匯總了Python中time._STRUCT_TM_ITEMS屬性的典型用法代碼示例。如果您正苦於以下問題:Python time._STRUCT_TM_ITEMS屬性的具體用法?Python time._STRUCT_TM_ITEMS怎麽用?Python time._STRUCT_TM_ITEMS使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類time
的用法示例。
在下文中一共展示了time._STRUCT_TM_ITEMS屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: _strptime_time
# 需要導入模塊: import time [as 別名]
# 或者: from time import _STRUCT_TM_ITEMS [as 別名]
def _strptime_time(data_string, format="%a %b %d %H:%M:%S %Y"):
"""Return a time struct based on the input string and the
format string."""
tt = _strptime(data_string, format)[0]
return time.struct_time(tt[:time._STRUCT_TM_ITEMS])
示例2: test_fields
# 需要導入模塊: import time [as 別名]
# 或者: from time import _STRUCT_TM_ITEMS [as 別名]
def test_fields(self):
t = time.gmtime()
self.assertEqual(len(t), t.n_sequence_fields)
self.assertEqual(t.n_unnamed_fields, 0)
self.assertEqual(t.n_fields, time._STRUCT_TM_ITEMS)