Re: ImportError: cannot import name 'RAND_egd'

2016-02-10 Thread shaunak . bangale
> > 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

Re: ImportError: cannot import name 'RAND_egd'

2016-02-09 Thread Ian Kelly
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

ImportError: cannot import name 'RAND_egd'

2016-02-09 Thread shaunak . bangale
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