> > shell(open file and run module). I have Python 3.5 installed.
> >
> >from _ssl import RAND_status, RAND_egd, RAND_add
> > ImportError: cannot import name 'RAND_egd'
>
> Why are you importing these directly from the "_ssl" C module and no
sl import RAND_status, RAND_egd, RAND_add
> ImportError: cannot import name 'RAND_egd'
Why are you importing these directly from the "_ssl" C module and not
from the "ssl" wrapper module? Anything that starts with an _ should
be considered a private implementation
Hi,
I am trying to run a 60 lines Python code which is running on a mac machine but
on windows machine, I am getting this error when I run on it on shell(open file
and run module). I have Python 3.5 installed.
from _ssl import RAND_status, RAND_egd, RAND_add
ImportError: cannot import name