(ch_a, ch_b)
| 1651 | |
| 1652 | |
| 1653 | def _substitution_cost(ch_a, ch_b): |
| 1654 | if ch_a == ch_b: |
| 1655 | return 0 |
| 1656 | if ch_a.lower() == ch_b.lower(): |
| 1657 | return _CASE_COST |
| 1658 | return _MOVE_COST |
| 1659 | |
| 1660 | |
| 1661 | def _is_lazy_import(obj, attr_name): |
no test coverage detected
searching dependent graphs…