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


Python log_loading.info方法代碼示例

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


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

示例1: load_protocols

# 需要導入模塊: from error import log_loading [as 別名]
# 或者: from error.log_loading import info [as 別名]
def load_protocols(filename):
    spaces = re.compile("[ \t]+|\n")
    dct = DADict(_name=filename)
    try:
        for l in open(filename):
            try:
                shrp = l.find("#")
                if  shrp >= 0:
                    l = l[:shrp]
                l = l.strip()
                if not l:
                    continue
                lt = tuple(re.split(spaces, l))
                if len(lt) < 2 or not lt[0]:
                    continue
                dct[lt[0]] = int(lt[1])
            except Exception,e:
                log_loading.info("Couldn't parse file [%s]: line [%r] (%s)" % (filename,l,e))
    except IOError:
        log_loading.info("Can't open %s file" % filename)
    return dct 
開發者ID:medbenali,項目名稱:CyberScan,代碼行數:23,代碼來源:data.py

示例2: load_ethertypes

# 需要導入模塊: from error import log_loading [as 別名]
# 或者: from error.log_loading import info [as 別名]
def load_ethertypes(filename):
    spaces = re.compile("[ \t]+|\n")
    dct = DADict(_name=filename)
    try:
        f=open(filename)
        for l in f:
            try:
                shrp = l.find("#")
                if  shrp >= 0:
                    l = l[:shrp]
                l = l.strip()
                if not l:
                    continue
                lt = tuple(re.split(spaces, l))
                if len(lt) < 2 or not lt[0]:
                    continue
                dct[lt[0]] = int(lt[1], 16)
            except Exception,e:
                log_loading.info("Couldn't parse file [%s]: line [%r] (%s)" % (filename,l,e))
        f.close() 
開發者ID:medbenali,項目名稱:CyberScan,代碼行數:22,代碼來源:data.py


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