This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients vstinner
Date 2019-07-09.11:29:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1562671798.12.0.15702039922.issue37322@roundup.psfhosted.org>
In-reply-to
Content
> New changeset cf9c41c422de3774862db964fe3153086bad3f61 by Victor Stinner in branch 'master':
> bpo-37322: Fix test_ssl.test_pha_required_nocert() ResourceWarning (GH-14662)

Oh. This test started to fail on Windows with this change. Example:

https://buildbot.python.org/all/#/builders/3/builds/3121

ERROR: test_pha_required_nocert (test.test_ssl.TestPostHandshakeAuth)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\buildarea\3.x.bolen-windows10\build\lib\test\test_ssl.py", line 4344, in test_pha_required_nocert
    s.recv(1024)
  File "D:\buildarea\3.x.bolen-windows10\build\lib\ssl.py", line 1226, in recv
    return self.read(buflen)
  File "D:\buildarea\3.x.bolen-windows10\build\lib\ssl.py", line 1101, in read
    return self._sslobj.read(len)
ConnectionResetError: [WinError 10054] An existing connection was forcibly closed by the remote host

I proposed PR 14669 to revert it.
History
Date User Action Args
2019-07-09 11:29:58vstinnersetrecipients: + vstinner
2019-07-09 11:29:58vstinnersetmessageid: <1562671798.12.0.15702039922.issue37322@roundup.psfhosted.org>
2019-07-09 11:29:58vstinnerlinkissue37322 messages
2019-07-09 11:29:57vstinnercreate