本文整理汇总了Python中pstats.Stats.fcn_list方法的典型用法代码示例。如果您正苦于以下问题:Python Stats.fcn_list方法的具体用法?Python Stats.fcn_list怎么用?Python Stats.fcn_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pstats.Stats
的用法示例。
在下文中一共展示了Stats.fcn_list方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _call
# 需要导入模块: from pstats import Stats [as 别名]
# 或者: from pstats.Stats import fcn_list [as 别名]
def _call(self, *args, **kw):
profile = RawProfile()
def _run():
with DisableGc():
for _ in range(self._iterations):
_run.result = super(Profile, self)._call(*args, **kw)
profile.runctx('_run()', {}, {'_run': _run})
profile.create_stats()
stats = Stats(profile)
stats.sort_stats('cumulative')
stats.fcn_list = stats.fcn_list[:self._max_lines]
self._reporter(stats)
return _run.result