Split 2 layers previously bound. This call un-links calls bind_top_down and bind_bottom_up. It is the opposite of # noqa: E501 bind_layers. Please have a look at their docs: - help(split_bottom_up) - help(split_top_down)
(lower, # type: Type[Packet]
upper, # type: Type[Packet]
__fval=None, # type: Optional[Any]
**fval # type: Any
)
| 2158 | |
| 2159 | @conf.commands.register |
| 2160 | def split_layers(lower, # type: Type[Packet] |
| 2161 | upper, # type: Type[Packet] |
| 2162 | __fval=None, # type: Optional[Any] |
| 2163 | **fval # type: Any |
| 2164 | ): |
| 2165 | # type: (...) -> None |
| 2166 | """Split 2 layers previously bound. |
| 2167 | This call un-links calls bind_top_down and bind_bottom_up. It is the opposite of # noqa: E501 |
| 2168 | bind_layers. |
| 2169 | |
| 2170 | Please have a look at their docs: |
| 2171 | - help(split_bottom_up) |
| 2172 | - help(split_top_down) |
| 2173 | """ |
| 2174 | if __fval is not None: |
| 2175 | fval.update(__fval) |
| 2176 | split_bottom_up(lower, upper, **fval) |
| 2177 | split_top_down(lower, upper, **fval) |
| 2178 | |
| 2179 | |
| 2180 | @conf.commands.register |
no test coverage detected
searching dependent graphs…