(rout)
| 331 | |
| 332 | |
| 333 | def islong_longfunction(rout): |
| 334 | if not isfunction(rout): |
| 335 | return 0 |
| 336 | if 'result' in rout: |
| 337 | a = rout['result'] |
| 338 | else: |
| 339 | a = rout['name'] |
| 340 | if a in rout['vars']: |
| 341 | return islong_long(rout['vars'][a]) |
| 342 | return 0 |
| 343 | |
| 344 | |
| 345 | def islong_doublefunction(rout): |
nothing calls this directly
no test coverage detected