Load all extensions registered in conf.
(self)
| 700 | _add_bash_autocompletion(name, script) |
| 701 | |
| 702 | def loadall(self) -> None: |
| 703 | """ |
| 704 | Load all extensions registered in conf. |
| 705 | """ |
| 706 | for extension in conf.load_extensions: |
| 707 | self.load(extension) |
| 708 | |
| 709 | def __repr__(self): |
| 710 | from scapy.utils import pretty_list |