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


Python sys.getdxp方法代碼示例

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


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

示例1: reset_profile

# 需要導入模塊: import sys [as 別名]
# 或者: from sys import getdxp [as 別名]
def reset_profile():
    """Forgets any execution profile that has been gathered so far."""
    with _profile_lock:
        sys.getdxp()  # Resets the internal profile
        global _cumulative_profile
        _cumulative_profile = sys.getdxp()  # 0s out our copy. 
開發者ID:aliyun,項目名稱:oss-ftp,代碼行數:8,代碼來源:analyze_dxp.py

示例2: merge_profile

# 需要導入模塊: import sys [as 別名]
# 或者: from sys import getdxp [as 別名]
def merge_profile():
    """Reads sys.getdxp() and merges it into this module's cached copy.

    We need this because sys.getdxp() 0s itself every time it's called."""

    with _profile_lock:
        new_profile = sys.getdxp()
        if has_pairs(new_profile):
            for first_inst in range(len(_cumulative_profile)):
                for second_inst in range(len(_cumulative_profile[first_inst])):
                    _cumulative_profile[first_inst][second_inst] += (
                        new_profile[first_inst][second_inst])
        else:
            for inst in range(len(_cumulative_profile)):
                _cumulative_profile[inst] += new_profile[inst] 
開發者ID:aliyun,項目名稱:oss-ftp,代碼行數:17,代碼來源:analyze_dxp.py

示例3: report

# 需要導入模塊: import sys [as 別名]
# 或者: from sys import getdxp [as 別名]
def report(email, appname):
    """
    Send an RLE encoded version of sys.getdxp() off to our Top Men (tm)
    for analysis.
    """
    if hasattr(sys, 'getdxp') and appname:
        dxp = xmlrpclib.ServerProxy("http://manatee.mojam.com:7304")
        dxp.add_dx_info(appname, email, sys.version_info[:3], rle(sys.getdxp())) 
開發者ID:kuri65536,項目名稱:python-for-android,代碼行數:10,代碼來源:dxprofile.py


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