[issue24545] Issue with ssl package

2015-07-01 Thread Kayne

New submission from Kayne:

I tried to use cert = ssl.get_server_certificate((, 443)) and it crashed 
with following error:

Traceback (most recent call last):
  File PeerCertChainQuery.py, line 107, in module
cert = ssl.get_server_certificate((options.host, 443))
  File /opt/lib/python2.7/ssl.py, line 965, in get_server_certificate
with closing(context.wrap_socket(sock)) as sslsock:
  File /opt/lib/python2.7/ssl.py, line 350, in wrap_socket
_context=self)
  File /opt/lib/python2.7/ssl.py, line 566, in __init__
self.do_handshake()
  File /opt/lib/python2.7/ssl.py, line 788, in do_handshake
self._sslobj.do_handshake()
ssl.SSLError: [SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake 
failure (_ssl.c:581)

Note that the configuration of apache server on the host  has disabled ssl3 
support and it only supports TLSV1, TLVS1.1, AND TLSV1.3.

This also happened on Python 3.4.3. 

Much appreciated if you could have a look at what happened or suggest me 
how to get around this.

--
components: Library (Lib)
messages: 246037
nosy: kxl561
priority: normal
severity: normal
status: open
title: Issue with ssl package
type: crash
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue24545
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1645148] MIME renderer: wrong header line break with long subject?

2008-05-11 Thread Kayne Naughton

Kayne Naughton [EMAIL PROTECTED] added the comment:

Just struck this myself, found Andi's solution to work.

Constructing the header using email.header stops it from breaking the
line awkwardly (vs. just storing a string).

Suggest the documentation example page be updated to use header() in
place of straight strings.

(I can only guess as to they why of this, it seems not to hang the
indent more than a space when using header).

--
nosy: +kayne

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1645148
_
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1645148] MIME renderer: wrong header line break with long subject?

2008-05-11 Thread Kayne Naughton

Kayne Naughton [EMAIL PROTECTED] added the comment:

Argg, yes, as Andi explained it's the tab (not sure how I missed that on
first reading).

_
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1645148
_
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com