[issue17582] xml.etree.ElementTree does not preserve whitespaces in attributes
Changes by Kesara Rathnayake : -- versions: +Python 3.6, Python 3.7 ___ Python tracker <http://bugs.python.org/issue17582> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue6087] distutils.sysconfig.get_python_lib gives surprising result when used with a Python build
Kesara Rathnayake added the comment: This issue still exists in Python 3.7. -- nosy: +kesara versions: +Python 3.7 ___ Python tracker <http://bugs.python.org/issue6087> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue6087] distutils.sysconfig.get_python_lib gives surprising result when used with a Python build
Kesara Rathnayake added the comment: Updated patch based on vinay.sajip's patch. -- Added file: http://bugs.python.org/file44616/6087_distutils_sysconfig.diff ___ Python tracker <http://bugs.python.org/issue6087> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue6087] distutils.sysconfig.get_python_lib gives surprising result when used with a Python build
Kesara Rathnayake added the comment: Updated patch based on vinay.sajip's patch. -- Added file: http://bugs.python.org/file44617/6087_sysconfig.diff ___ Python tracker <http://bugs.python.org/issue6087> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue6087] distutils.sysconfig.get_python_lib gives surprising result when used with a Python build
Kesara Rathnayake added the comment: These patches break both test_distutils & test_sysconfig tests. -- ___ Python tracker <http://bugs.python.org/issue6087> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue6087] distutils.sysconfig.get_python_lib gives surprising result when used with a Python build
Kesara Rathnayake added the comment: Test output: [cpython.25567]$ ./python.exe -m test test_distutils test_sysconfig -j3 Run tests in parallel using 3 child processes 0:00:01 [1/2/1] test_sysconfig failed test test_sysconfig failed -- Traceback (most recent call last): File "/Users/kesara/pycon/cpython.25567/Lib/test/test_sysconfig.py", line 283, in test_user_similar self.assertEqual(user_path, global_path.replace(base, user, 1)) AssertionError: '/Users/kesara/.local/lib/python3.6' != '/Users/kesara/pycon/cpython.25567/Lib' - /Users/kesara/.local/lib/python3.6 + /Users/kesara/pycon/cpython.25567/Lib 0:00:05 [2/2/2] test_distutils failed test test_distutils failed -- Traceback (most recent call last): File "/Users/kesara/pycon/cpython.25567/Lib/distutils/tests/test_sysconfig.py", line 40, in test_get_python_lib sysconfig.get_python_lib(prefix=TESTFN)) AssertionError: '/Users/kesara/pycon/cpython.25567/Lib' == '/Users/kesara/pycon/cpython.25567/Lib' 2 tests failed: test_distutils test_sysconfig Total duration: 6 sec Tests result: FAILURE -- ___ Python tracker <http://bugs.python.org/issue6087> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue6087] distutils.sysconfig.get_python_lib gives surprising result when used with a Python build
Kesara Rathnayake added the comment: fix-6087.diff passes on OSX (Python 3.6) $ ./python.exe -m test test_distutils test_sysconfig -j3 Run tests in parallel using 3 child processes 0:00:01 [1/2] test_sysconfig passed 0:00:13 [2/2] test_distutils passed All 2 tests OK. Total duration: 14 sec Tests result: SUCCESS -- ___ Python tracker <http://bugs.python.org/issue6087> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com