New submission from Greg Stark:
This is not a bug, but rather a request for API improvements.
Correct SSL shutdown processing is frequent source of confusion. Python’s ssl
module unfortunately lacks the flexibility to accommodate some common
paradigms.
The problem is that the unwrap
Greg Stark added the comment:
adding script the illustrates the bug.
--
Added file: http://bugs.python.org/file46364/sslbugs.py
___
Python tracker
<http://bugs.python.org/issue29
Greg Stark added the comment:
Christian,
I will gladly do so a little later today. Thanks for your quick response.
--greg
On Fri, Jan 20, 2017 at 7:29 AM, Christian Heimes
wrote:
>
> Christian Heimes added the comment:
>
> Hi Grek,
>
> can you provide a script to rep
New submission from Greg Stark:
In my experiments with the relatively new class SSLObject from the ssl module
I've noticed the following behavior(s) which I think can be described as bugs.
The getpeercert() method raises a ValueError exception "handshake not done"
even after th
Greg Stark added the comment:
Well I was able to minimize the actual cause:
$ /usr/pkg/bin/python -c 1e300*1e300
[1] Floating point exception /usr/pkg/bin/python -c 1e300*1e300
I noticed that the constant folding arithmetic is protected by
"PyFPE_START_PROTECT" macros so I wonder
Greg Stark added the comment:
I certainly understand the limitations of volunteer projects. I know you have
limited resources and can't test on every platform. That's actually exactly why
I'm testing on this platform and why I reported the bug. If there's any
addition
Greg Stark added the comment:
I can easily grant you access to mine. It's a bit slow but you can quickly poke
around with the state in the backtrace which honestly looks to me like it
should be enough to spot the problem.
There are other options. There's a good emulato
New submission from Greg Stark:
The file Test/test_float.py has a decorator for tests that must be skipped on
non-IEEE machines. However just eyeballing it it seems there are a few tests
that test behaviour around Inf and NaN that are lacking this decorator.
Alternately it's possible th