(func_name)
| 586 | return func[2] |
| 587 | |
| 588 | def func_std_string(func_name): # match what old profile produced |
| 589 | if func_name[:2] == ('~', 0): |
| 590 | # special case for built-in functions |
| 591 | name = func_name[2] |
| 592 | if name.startswith('<') and name.endswith('>'): |
| 593 | return '{%s}' % name[1:-1] |
| 594 | else: |
| 595 | return name |
| 596 | else: |
| 597 | return "%s:%d(%s)" % func_name |
| 598 | |
| 599 | #************************************************************************** |
| 600 | # The following functions combine statistics for pairs functions. |
no test coverage detected
searching dependent graphs…