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 gregory.p.smith
Recipients Ben.Darnell, christian.heimes, gregory.p.smith, martin.panter, nikratio, xgdomingo
Date 2018-12-31.01:08:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1546218506.52.0.84923397812.issue31122@roundup.psfhosted.org>
In-reply-to
Content
This flakiness just caused a PR merge to be blocked by AppVeyor for me:

======================================================================
ERROR: test_with_statement (test.test_nntplib.NetworkedNNTP_SSLTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "C:\projects\cpython\lib\test\test_nntplib.py", line 242, in wrapped
    meth(self)
  File "C:\projects\cpython\lib\test\test_nntplib.py", line 264, in test_with_statement
    with self.NNTP_CLASS(self.NNTP_HOST, timeout=TIMEOUT, usenetrc=False) as server:
  File "C:\projects\cpython\lib\nntplib.py", line 1077, in __init__
    self.sock = _encrypt_on(self.sock, ssl_context, host)
  File "C:\projects\cpython\lib\nntplib.py", line 292, in _encrypt_on
    return context.wrap_socket(sock, server_hostname=hostname)
  File "C:\projects\cpython\lib\ssl.py", line 405, in wrap_socket
    return self.sslsocket_class._create(
  File "C:\projects\cpython\lib\ssl.py", line 853, in _create
    self.do_handshake()
  File "C:\projects\cpython\lib\ssl.py", line 1117, in do_handshake
    self._sslobj.do_handshake()
OSError: [Errno 0] Error
----------------------------------------------------------------------

https://ci.appveyor.com/project/python/cpython/builds/21299396

I lucked out by kicking it with a no-op change to re-trigger an appveyor run where it passed.
History
Date User Action Args
2018-12-31 01:08:27gregory.p.smithsetrecipients: + gregory.p.smith, christian.heimes, nikratio, Ben.Darnell, martin.panter, xgdomingo
2018-12-31 01:08:26gregory.p.smithsetmessageid: <1546218506.52.0.84923397812.issue31122@roundup.psfhosted.org>
2018-12-31 01:08:26gregory.p.smithlinkissue31122 messages
2018-12-31 01:08:26gregory.p.smithcreate