Swap the inputs and outputs of sgv1 to sgv0 (see _reroute_sgv).
(sgv0, sgv1)
| 442 | |
| 443 | |
| 444 | def swap_ios(sgv0, sgv1): |
| 445 | """Swap the inputs and outputs of sgv1 to sgv0 (see _reroute_sgv).""" |
| 446 | return _reroute_sgv(sgv0, sgv1, _RerouteMode.swap) |
| 447 | |
| 448 | |
| 449 | def reroute_ios(sgv0, sgv1): |
nothing calls this directly
no test coverage detected