(rout)
| 533 | |
| 534 | |
| 535 | def hasresultnote(rout): |
| 536 | if not isfunction(rout): |
| 537 | return 0 |
| 538 | if 'result' in rout: |
| 539 | a = rout['result'] |
| 540 | else: |
| 541 | a = rout['name'] |
| 542 | if a in rout['vars']: |
| 543 | return hasnote(rout['vars'][a]) |
| 544 | return 0 |
| 545 | |
| 546 | |
| 547 | def hascommon(rout): |
no test coverage detected