diff options
author | Hanoh Haim <hhaim@cisco.com> | 2016-03-07 13:02:58 +0200 |
---|---|---|
committer | Hanoh Haim <hhaim@cisco.com> | 2016-03-07 13:02:58 +0200 |
commit | 43d2908784a801c188e905ec95f81cb2f714f649 (patch) | |
tree | c4cea3ffc0f39913f75af410d5a3c8071089a327 /scripts | |
parent | 9c9b490bf6365cdb677ceb61111f8b8a18384759 (diff) |
scapy all- remove more unnecessary imports
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/external_libs/scapy-2.3.1/scapy/all.py | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/scripts/external_libs/scapy-2.3.1/scapy/all.py b/scripts/external_libs/scapy-2.3.1/scapy/all.py index 7d7afd15..73817243 100644 --- a/scripts/external_libs/scapy-2.3.1/scapy/all.py +++ b/scripts/external_libs/scapy-2.3.1/scapy/all.py @@ -12,7 +12,7 @@ from config import * from dadict import * from data import * from error import * -from themes import * +#from themes import * from arch import * from plist import * @@ -23,17 +23,17 @@ from packet import * from utils import * from route import * -if conf.ipv6_enabled: - from utils6 import * - from route6 import * -from sendrecv import * -from supersocket import * +#if conf.ipv6_enabled: +# from utils6 import * +# from route6 import * +#from sendrecv import * +#from supersocket import * from volatile import * from as_resolvers import * -from ansmachine import * -from automaton import * -from autorun import * +#from ansmachine import * +#from automaton import * +#from autorun import * from main import * @@ -45,5 +45,5 @@ from layers.all import * #from crypto import * -from pipetool import * -from scapypipes import * +#from pipetool import * +#from scapypipes import * |