When I enter this code:
print "hhhh"
from scapy.all import sniff
print "bbbb"
this is the output:
C:\Python27\python.exe C:/Users/Tamir/PycharmProjects/SIP/main.py
hhhh
WARNING: No route found for IPv6 destination :: (no default route?)
Process finished with exit code 0
Why doesn't the second print (of "bbbb") work? When I put the import line in a comment, or import another library, it works.