当前位置: 首页>>代码示例>>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;未经允许,请勿转载。