[issue33802] Regression in logging configuration

2018-08-06 Thread Steap
Steap added the comment: It seems like this regression has not completely been fixed: there are still issues with "None": $ python3.6 -c 'import configparser; configparser.ConfigParser(defaults={"a": None})' $ python3.7 -c 'import configparser; configpa

[issue20868] Lib/test/test_socket.py: skip testGetServBy if /etc/services is not found

2014-03-14 Thread Steap
Steap added the comment: I did not know that /etc/services is not always used :/ The main issue is that when you run the test suite in a chroot (to do "pure" builds) or in a network sandbox (for other functions). I get the followi

[issue20868] Lib/test/test_socket.py: skip testGetServBy if /etc/services is not found

2014-03-07 Thread Steap
New submission from Steap: In Lib/test/test_socket.py, testGetServBy calls socket.getservbyname(), which needs /etc/services (see "man getservbyname"). If this file is not found, the test fails instead of being skipped. The attached patch was written against the latest revis