I seem to be having a problem importing functions from a file whenever I use the wildcard "*".
from text import *
Raises this error:
NameError: global name '_Star' is not defined
However, if I ask it to import the Function names' manually like so:
from text import _Star, _Zero, _One
The program works perfectly, does anyone know why this is so? I have around 60 individual functions in the text.py file and I don't want to make my code semi-messy by writing out the individual functions out in the import.