當前位置: 首頁>>代碼示例>>Python>>正文


Python Utils.parsedate方法代碼示例

本文整理匯總了Python中email.Utils.parsedate方法的典型用法代碼示例。如果您正苦於以下問題:Python Utils.parsedate方法的具體用法?Python Utils.parsedate怎麽用?Python Utils.parsedate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在email.Utils的用法示例。


在下文中一共展示了Utils.parsedate方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_formatdate

# 需要導入模塊: from email import Utils [as 別名]
# 或者: from email.Utils import parsedate [as 別名]
def test_formatdate(self):
        now = time.time()
        self.assertEqual(Utils.parsedate(Utils.formatdate(now))[:6],
                         time.gmtime(now)[:6]) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:6,代碼來源:test_email.py

示例2: test_formatdate_localtime

# 需要導入模塊: from email import Utils [as 別名]
# 或者: from email.Utils import parsedate [as 別名]
def test_formatdate_localtime(self):
        now = time.time()
        self.assertEqual(
            Utils.parsedate(Utils.formatdate(now, localtime=True))[:6],
            time.localtime(now)[:6]) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:7,代碼來源:test_email.py

示例3: test_parsedate_none

# 需要導入模塊: from email import Utils [as 別名]
# 或者: from email.Utils import parsedate [as 別名]
def test_parsedate_none(self):
        self.assertEqual(Utils.parsedate(''), None) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:4,代碼來源:test_email.py

示例4: test_parsedate_compact

# 需要導入模塊: from email import Utils [as 別名]
# 或者: from email.Utils import parsedate [as 別名]
def test_parsedate_compact(self):
        # The FWS after the comma is optional
        self.assertEqual(Utils.parsedate('Wed,3 Apr 2002 14:58:26 +0800'),
                         Utils.parsedate('Wed, 3 Apr 2002 14:58:26 +0800')) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:6,代碼來源:test_email.py

示例5: test_parsedate_acceptable_to_time_functions

# 需要導入模塊: from email import Utils [as 別名]
# 或者: from email.Utils import parsedate [as 別名]
def test_parsedate_acceptable_to_time_functions(self):
        eq = self.assertEqual
        timetup = Utils.parsedate('5 Feb 2003 13:47:26 -0800')
        t = int(time.mktime(timetup))
        eq(time.localtime(t)[:6], timetup[:6])
        eq(int(time.strftime('%Y', timetup)), 2003)
        timetup = Utils.parsedate_tz('5 Feb 2003 13:47:26 -0800')
        t = int(time.mktime(timetup[:9]))
        eq(time.localtime(t)[:6], timetup[:6])
        eq(int(time.strftime('%Y', timetup[:9])), 2003) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:12,代碼來源:test_email.py

示例6: date

# 需要導入模塊: from email import Utils [as 別名]
# 或者: from email.Utils import parsedate [as 別名]
def date(self):
        """return a mx.DateTime object for the email's date or None if no date is
        set or if it can't be parsed
        """
        value = self.get('date')
        if value:
            datetuple = parsedate(value)
            if datetuple:
                return DateTime(*datetuple[:6])
        return None 
開發者ID:jlachowski,項目名稱:clonedigger,代碼行數:12,代碼來源:umessage.py


注:本文中的email.Utils.parsedate方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。