New submission from SenBin Yu:
In the SSLSocket __init__ function, it's ok to do a socket type check with
argument sock.But meanwhile the sock argument can't be None, which make the
SSLSocket socket __init__ way meaningless.Although there are three branch
conditions as argument so
SenBin Yu added the comment:
The issue 27629 describe creating a SSLSocket only with server_hostname
argument.But what i said is that we can't creating a SSLSocket with fileno
argument from a existing socket.I'm strange about this code design that
meaningless branch conditi
SenBin Yu added the comment:
Yes, the giving code is what i desiere and shoud be supported. Sorry, i haven't
see the patch file.And the next release will include this patch?
--
___
Python tracker
<http://bugs.python.org/is
New submission from SenBin Yu:
The standard http basic authorization is
basic-credentials = "Basic" SP basic-cookie
basic-cookie =
userid-password = [ token ] ":" *TEXT
but the logging/handlers module do the fllowing:
s = ('u%s:%s' % self.credential