Re: ATTRIBUTE ERROR: 'module' object has no attribute 'ssl'

2006-12-09 Thread John Machin
\xampp\xampp\xampp\python\lib\httplib.py", line 646, in send > > self.connect() > > File "H:\xampp\xampp\xampp\python\lib\httplib.py", line 1073, in > > connect > > ssl = socket.ssl(sock, self.key_file, self.cert_file) > > AttributeError: 'module&#

Re: ATTRIBUTE ERROR: 'module' object has no attribute 'ssl'

2006-12-09 Thread John Machin
self.connect() > File "H:\xampp\xampp\xampp\python\lib\httplib.py", line 1073, in > connect > ssl = socket.ssl(sock, self.key_file, self.cert_file) > AttributeError: 'module' object has no attribute 'ssl' > > Thank You in Advance Thanks for wh

ATTRIBUTE ERROR: 'module' object has no attribute 'ssl'

2006-12-09 Thread johnny
y", line 1073, in connect ssl = socket.ssl(sock, self.key_file, self.cert_file) AttributeError: 'module' object has no attribute 'ssl' Thank You in Advance -- http://mail.python.org/mailman/listinfo/python-list

Re: 'module' object has no attribute 'ssl'

2006-06-21 Thread Daniel Dittmar
Niurka Perez wrote: > ssl = socket.ssl(sock, self.key_file, > self.cert_file) > AttributeError: 'module' object has no attribute 'ssl' The socket module failed to import the _ssl module. And the ssl function gets only defined if _ssl could be imported. You p

'module' object has no attribute 'ssl'

2006-06-21 Thread Niurka Perez
, line 679, in _send_output self.send(msg) File "/usr/local/lib/python2.4/httplib.py", line 646, in send self.connect () File "/usr/local/lib/python2.4/httplib.py", line 1073, in connect ssl = socket.ssl(sock, self.key_file, self.cert_file) AttributeError: