Find one (or multiple) backend in a code line of the init.
(line)
| 56 | |
| 57 | |
| 58 | def find_backend(line): |
| 59 | """Find one (or multiple) backend in a code line of the init.""" |
| 60 | backends = _re_backend.findall(line) |
| 61 | if len(backends) == 0: |
| 62 | return None |
| 63 | |
| 64 | return "_and_".join(backends) |
| 65 | |
| 66 | |
| 67 | def read_init(): |
no outgoing calls
searching dependent graphs…