(line)
| 8 | from collections import defaultdict |
| 9 | |
| 10 | def getParentAndChild(line): |
| 11 | triple = line.replace(",","temp_placeholder") |
| 12 | triple = triple.lower().split('\t',maxsplit = 4) |
| 13 | child = triple[0].replace("temp_placeholder",",") |
| 14 | child = child.strip() |
| 15 | tempList = child.rsplit("/",1) |
| 16 | child = tempList[-1][:-1] |
| 17 | parent = triple[2].replace("temp_placeholder",",") |
| 18 | parent = parent.strip() |
| 19 | tempList = parent.rsplit("/",1) |
| 20 | parent = tempList[-1][:-1] |
| 21 | return (parent, child) |
| 22 | |
| 23 | def findSubClasses(path): |
| 24 | i = 1 |
no outgoing calls
no test coverage detected