(s, index)
| 104 | |
| 105 | |
| 106 | def find_class(s, index): |
| 107 | lines = s[:index].split("\n") |
| 108 | while lines: |
| 109 | m = CLASS_DEF_RE.match(lines[-1]) |
| 110 | if m: |
| 111 | return m.group(1) + "." |
| 112 | lines.pop() |
| 113 | return "?." |
| 114 | |
| 115 | |
| 116 | def find_deprecated_defs(pkg_dir): |
no test coverage detected
searching dependent graphs…