(rout)
| 781 | |
| 782 | |
| 783 | def getrestdoc(rout): |
| 784 | if 'f2pymultilines' not in rout: |
| 785 | return None |
| 786 | k = None |
| 787 | if rout['block'] == 'python module': |
| 788 | k = rout['block'], rout['name'] |
| 789 | return rout['f2pymultilines'].get(k, None) |
| 790 | |
| 791 | |
| 792 | def gentitle(name): |
no test coverage detected
searching dependent graphs…