(line)
| 850 | |
| 851 | |
| 852 | def markouterparen(line): |
| 853 | l = '' |
| 854 | f = 0 |
| 855 | for c in line: |
| 856 | if c == '(': |
| 857 | f = f + 1 |
| 858 | if f == 1: |
| 859 | l = l + '@(@' |
| 860 | continue |
| 861 | elif c == ')': |
| 862 | f = f - 1 |
| 863 | if f == 0: |
| 864 | l = l + '@)@' |
| 865 | continue |
| 866 | l = l + c |
| 867 | return l |
| 868 | |
| 869 | |
| 870 | def markoutercomma(line, comma=','): |
no outgoing calls
no test coverage detected
searching dependent graphs…