(rout)
| 544 | |
| 545 | |
| 546 | def hasresultnote(rout): |
| 547 | if not isfunction(rout): |
| 548 | return 0 |
| 549 | if 'result' in rout: |
| 550 | a = rout['result'] |
| 551 | else: |
| 552 | a = rout['name'] |
| 553 | if a in rout['vars']: |
| 554 | return hasnote(rout['vars'][a]) |
| 555 | return 0 |
| 556 | |
| 557 | |
| 558 | def hascommon(rout): |
no test coverage detected
searching dependent graphs…