(pymod)
| 928 | return name |
| 929 | |
| 930 | def getuseblocks(pymod): |
| 931 | all_uses = [] |
| 932 | for inner in pymod['body']: |
| 933 | for modblock in inner['body']: |
| 934 | if modblock.get('use'): |
| 935 | all_uses.extend([x for x in modblock.get("use").keys() if "__" not in x]) |
| 936 | return all_uses |
| 937 | |
| 938 | def process_f2cmap_dict(f2cmap_all, new_map, c2py_map, verbose=False): |
| 939 | """ |
no test coverage detected
searching dependent graphs…