[issue30212] test_ssl.py is broken in Centos7

2021-09-12 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> out of date stage: -> resolved status: open -> closed ___ Python tracker ___ ___

[issue30212] test_ssl.py is broken in Centos7

2019-01-18 Thread David Antonio Garcia Campos
David Antonio Garcia Campos added the comment: Hello Victor, I just saw your message. I will try to setup my enviorment and will come back to you. BR David Garcia -- nosy: +David Antonio Garcia Campos ___ Python tracker

[issue30212] test_ssl.py is broken in Centos7

2019-01-18 Thread STINNER Victor
STINNER Victor added the comment: @david-cpi: Ping? Can you please try comments in my previous comment? Without feedback from your side, I will close the issue as "outdated" in 2 weeks. -- ___ Python tracker

[issue30212] test_ssl.py is broken in Centos7

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: > in 3.6.1 the test passes but it's because on sub-test was removed. The unit tests still exist and were enhanced. On Python 3.5, the BIO read-write data test used the external server self-signed.pythontest.net. On Python 3.6, the test now uses a server

[issue30212] test_ssl.py is broken in Centos7

2017-05-02 Thread david-cpi
david-cpi added the comment: Hello Victor, in 3.6.1 the test passes but it's because on sub-test was removed. The one generating the issue is NetworkedBIOTests which is not found in 3.6.1. in 3.5.2: if support.is_resource_enabled('network'): tests.append(NetworkedTests)

[issue30212] test_ssl.py is broken in Centos7

2017-05-02 Thread david-cpi
david-cpi added the comment: Hi Victor, I will try during the day and get back with the logs. -- ___ Python tracker ___

[issue30212] test_ssl.py is broken in Centos7

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: David: can you please check if you get the same error with Python 3.6, or even the development version (Git master branch)? -- ___ Python tracker

[issue30212] test_ssl.py is broken in Centos7

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: Oh, I missed the attached test.log file. So, it's CentOS 7.3.1611 and the full error message is: == CPython 3.5.2 (default, Apr 29 2017, 16:07:16) [GCC 4.8.5 20150623 (Red Hat 4.8.5-11)] == Linux-3.10.0-514.16.1.el7.x86_64-x86_64-with-centos-7.3.1611-Core

[issue30212] test_ssl.py is broken in Centos7

2017-05-02 Thread STINNER Victor
STINNER Victor added the comment: @david-cpi: Can you please elaborate? * What is your Centos full version? * How do you get Python 3.5? Tarball from python.org? * What is the error message? "except: pass" is bad practice, you must catch a specific exception type. It seems very strange to

[issue30212] test_ssl.py is broken in Centos7

2017-05-02 Thread Xiang Zhang
Xiang Zhang added the comment: The failure can't be reproduced by me, 3.5 on CentOS 7.1. -- ___ Python tracker ___

[issue30212] test_ssl.py is broken in Centos7

2017-04-30 Thread Xiang Zhang
Changes by Xiang Zhang : -- nosy: +haypo, xiang.zhang ___ Python tracker ___ ___

[issue30212] test_ssl.py is broken in Centos7

2017-04-29 Thread david-cpi
New submission from david-cpi: To make the test pass, I added the following try statement: try: sock.sendall(buf) except: pass -- components: Tests files: test.log messages: 292608 nosy: david-cpi priority: normal severity: normal