Message305316
On my PR 4200 which is unrelated to networking, the following test failed once.
FAIL: test_create_connection (test.test_socket.NetworkConnectionNoServer)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/home/travis/build/python/cpython/Lib/test/test_socket.py", line 4537, in test_create_connection
self.assertIn(cm.exception.errno, expected_errnos)
AssertionError: 99 not found in [111, 101]
With error codes:
* 99: EADDRNOTAVAIL: Cannot assign requested address
* 111: ECONNREFUSED: Connection refused
* 101: ENETUNREACH: Network is unreachable
Maybe we shold include EADDRNOTAVAIL in the expected error codes? |
|
| Date |
User |
Action |
Args |
| 2017-10-31 17:05:22 | vstinner | set | recipients:
+ vstinner, martin.panter, serhiy.storchaka |
| 2017-10-31 17:05:22 | vstinner | set | messageid: <[email protected]> |
| 2017-10-31 17:05:22 | vstinner | link | issue31910 messages |
| 2017-10-31 17:05:22 | vstinner | create | |
|