ATLAS Offline Software
Classes | Functions
python.ext.lsprofcalltree Namespace Reference

Classes

class  KCacheGrind
 

Functions

def label (code)
 

Function Documentation

◆ label()

def python.ext.lsprofcalltree.label (   code)

Definition at line 5 of file lsprofcalltree.py.

5 def label(code):
6  if isinstance(code, str):
7  return ('~', 0, code) # built-in functions ('~' sorts at the end)
8  else:
9  return '%s %s:%d' % (code.co_name, code.co_filename, code.co_firstlineno)
10 
11 
12 
python.ext.lsprofcalltree.label
def label(code)
Definition: lsprofcalltree.py:5