(func_name)
| 552 | return func[2] |
| 553 | |
| 554 | def func_std_string(func_name): # match what old profile produced |
| 555 | if func_name[:2] == ('~', 0): |
| 556 | # special case for built-in functions |
| 557 | name = func_name[2] |
| 558 | if name.startswith('<') and name.endswith('>'): |
| 559 | return '{%s}' % name[1:-1] |
| 560 | else: |
| 561 | return name |
| 562 | else: |
| 563 | return "%s:%d(%s)" % func_name |
| 564 | |
| 565 | #************************************************************************** |
| 566 | # The following functions combine statistics for pairs functions. |
no test coverage detected