I tried Googling around for this but I couldn't find anything useful.
I know Python caches modules so they only have to be imported once, but is there a performance hit when using the wildcard import? For example, is this...
...slower than this?
Thanks in advance.
I know Python caches modules so they only have to be imported once, but is there a performance hit when using the wildcard import? For example, is this...
Code:
from some_module import *
Code:
import some_module
Comment