* Bug in del(list) logic. Say you have a list of 4 elements a[0-3] and you have to remove index 1 and 3, if you remove index 1 first then list is cut short a[0-2] and does not have index 3 Fix: Remove indexes in reverse sorted order e.g. 3 and 1 in above example so that order of indexes remain preserved even after deleting fix is to remove indexes in reverse sorted order * Add test cases for failed case |
||
---|---|---|
.. | ||
__init__.py | ||
vyos_banner.py | ||
vyos_command.py | ||
vyos_config.py | ||
vyos_facts.py | ||
vyos_interface.py | ||
vyos_l3_interface.py | ||
vyos_linkagg.py | ||
vyos_lldp.py | ||
vyos_lldp_interface.py | ||
vyos_logging.py | ||
vyos_static_route.py | ||
vyos_system.py | ||
vyos_user.py | ||
vyos_vlan.py |