[issue37583] Got a 113 error when running the test_socket

2019-08-14 Thread STINNER Victor
STINNER Victor added the comment: Thanks Hai Shi for the bug report and the fix. It's now fixd in 3.7, 3.8 and master branches. First I understood that you wanted to modify transient_internet() which is used in many places. Fixing support.get_socket_conn_refused_errs() is fine, it's only

[issue37583] Got a 113 error when running the test_socket

2019-08-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset fbb0c032e89c42ab44f5372df40fffb34a91b575 by Victor Stinner (Hai Shi) in branch '3.7': bpo-37583: Add err 113 to support.get_socket_conn_refused_errs() (GH-15259) https://github.com/python/cpython/commit/fbb0c032e89c42ab44f5372df40fffb34a91b575

[issue37583] Got a 113 error when running the test_socket

2019-08-13 Thread miss-islington
miss-islington added the comment: New changeset ee989512528d178d6f088916aba3e67ea9487ceb by Miss Islington (bot) in branch '3.8': bpo-37583: Add err 113 to support.get_socket_conn_refused_errs() (GH-14729) https://github.com/python/cpython/commit/ee989512528d178d6f088916aba3e67ea9487ceb

[issue37583] Got a 113 error when running the test_socket

2019-08-13 Thread hai shi
Change by hai shi : -- pull_requests: +14978 pull_request: https://github.com/python/cpython/pull/15259 ___ Python tracker ___ ___

[issue37583] Got a 113 error when running the test_socket

2019-08-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +14977 pull_request: https://github.com/python/cpython/pull/15258 ___ Python tracker ___

[issue37583] Got a 113 error when running the test_socket

2019-08-13 Thread STINNER Victor
STINNER Victor added the comment: New changeset 1ac2a83f30312976502fda042db5ce18d10ceec2 by Victor Stinner (Hai Shi) in branch 'master': bpo-37583: Add err 113 to support.get_socket_conn_refused_errs() (GH-14729)

[issue37583] Got a 113 error when running the test_socket

2019-08-12 Thread hai shi
hai shi added the comment: Oh, sorry, victor. I use ./python -m unittest xxx before. Updating the test result again. -- Added file: https://bugs.python.org/file48538/test_socket_fail_info_v2.txt ___ Python tracker

[issue37583] Got a 113 error when running the test_socket

2019-08-12 Thread STINNER Victor
STINNER Victor added the comment: I don't understand such error: == ERROR: testSendmsgBadMultiCmsg (test.test_socket.SendmsgTests) -- Traceback (most recent

[issue37583] Got a 113 error when running the test_socket

2019-08-06 Thread hai shi
hai shi added the comment: ping :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37583] Got a 113 error when running the test_socket

2019-07-14 Thread hai shi
hai shi added the comment: sure, i copied the full output of test_socket. more failed test case looks like need add two property functions. -- Added file: https://bugs.python.org/file48480/test_socket_fail_info.txt ___ Python tracker

[issue37583] Got a 113 error when running the test_socket

2019-07-14 Thread STINNER Victor
STINNER Victor added the comment: Can you copy/paste the full output of test_socket, or better: of the whole test suite? Put it in a file and attach it to the issue. -- ___ Python tracker

[issue37583] Got a 113 error when running the test_socket

2019-07-13 Thread hai shi
hai shi added the comment: So I add this 113 error in `get_socket_conn_refused_errs` too ;) -- ___ Python tracker ___ ___

[issue37583] Got a 113 error when running the test_socket

2019-07-13 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Victor handled similar errors in issue36629 where this helper was introduced. -- nosy: +vstinner, xtreak type: -> enhancement versions: +Python 3.9 ___ Python tracker

[issue37583] Got a 113 error when running the test_socket

2019-07-13 Thread hai shi
Change by hai shi : -- keywords: +patch pull_requests: +14523 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14729 ___ Python tracker ___

[issue37583] Got a 113 error when running the test_socket

2019-07-13 Thread hai shi
New submission from hai shi : When I run test_socket.py, I got a error. Looks it's a problem of security group. My env: a vm of centos May be I need add `EHOSTUNREACH` in support.get_socket_conn_refused_errs()? == FAIL: