diff options
author | Victor Stinner <vstinner@python.org> | 2021-06-02 20:25:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-02 20:25:26 (GMT) |
commit | 320eaa7f42b413cd5e5436ec92d4dc5ba150395f (patch) | |
tree | f79d52f3dc0c4db54438ee4d579a8e05e864f715 /Misc/NEWS.d | |
parent | 8916633b768e08af6375c7be9ea6c8ba9b3962b0 (diff) | |
download | cpython-320eaa7f42b413cd5e5436ec92d4dc5ba150395f.zip cpython-320eaa7f42b413cd5e5436ec92d4dc5ba150395f.tar.gz cpython-320eaa7f42b413cd5e5436ec92d4dc5ba150395f.tar.bz2 |
bpo-43921: Fix test_ssl.test_pha_required_nocert() (GH-26489)
Fix test_pha_required_nocert() of test_ssl: catch two more EOF cases
(when the recv() method returns an empty string).
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Tests/2021-06-02-17-41-42.bpo-43921.xP7yZ4.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2021-06-02-17-41-42.bpo-43921.xP7yZ4.rst b/Misc/NEWS.d/next/Tests/2021-06-02-17-41-42.bpo-43921.xP7yZ4.rst new file mode 100644 index 0000000..83146c7 --- /dev/null +++ b/Misc/NEWS.d/next/Tests/2021-06-02-17-41-42.bpo-43921.xP7yZ4.rst @@ -0,0 +1,2 @@ +Fix test_pha_required_nocert() of test_ssl: catch two more EOF cases (when +the ``recv()`` method returns an empty string). Patch by Victor Stinner. |