[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-12-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +22864 pull_request: https://github.com/python/cpython/pull/24024 ___ Python tracker ___

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-09-07 Thread STINNER Victor
STINNER Victor added the comment: It should now be fixed. Thanks. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-09-07 Thread STINNER Victor
STINNER Victor added the comment: New changeset 84105cbaa395923e3584a87d67ccce72c8420bb4 by Victor Stinner in branch '3.8': bpo-41401: Fix test_fspath_support in test_io. (GH-21640) (GH-22133) (GH-22135) https://github.com/python/cpython/commit/84105cbaa395923e3584a87d67ccce72c8420bb4

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-09-07 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +21217 pull_request: https://github.com/python/cpython/pull/22135 ___ Python tracker ___

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-09-07 Thread STINNER Victor
STINNER Victor added the comment: New changeset c73ee5acc96b4bbd6885156883b224b8cc3e470c by Victor Stinner in branch '3.9': bpo-41401: Fix test_fspath_support in test_io. (GH-21640) (GH-22133) https://github.com/python/cpython/commit/c73ee5acc96b4bbd6885156883b224b8cc3e470c --

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-09-07 Thread STINNER Victor
STINNER Victor added the comment: > Automatic backport does not work due to changes in the test.support module. > Victor, do you mind to backport PR 21640 to 3.9 and 3.8? Why don't you want to do backport yourself? It's a trivial change, it only changes a single line. Anyway, I created PR

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-09-07 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +vstinner nosy_count: 3.0 -> 4.0 pull_requests: +21215 pull_request: https://github.com/python/cpython/pull/22133 ___ Python tracker ___

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-09-05 Thread David Edelsohn
Change by David Edelsohn : -- nosy: +David.Edelsohn ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-08-18 Thread Michael Felt
Michael Felt added the comment: As much as I wish I had the skills to do the cherry picking - I am not going to touch this. The AIX bots for 3.9 branch continue to report broken for test_io (ENV change) - as they still wait for the backport for that branch! --

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-08-03 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-29 Thread Michael Felt
Michael Felt added the comment: The 'master' branch bot is working again, the 3.9 branch is still broken, and the 3.8 branch seems, as yet, unaffected. -- ___ Python tracker

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Automatic backport does not work due to changes in the test.support module. Victor, do you mind to backport PR 21640 to 3.9 and 3.8? -- nosy: +vstinner ___ Python tracker

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 67987acd5dc9776f55f4e139e2b3d9e7a6434d9f by Serhiy Storchaka in branch 'master': bpo-41401: Fix test_fspath_support in test_io. (GH-21640) https://github.com/python/cpython/commit/67987acd5dc9776f55f4e139e2b3d9e7a6434d9f --

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-27 Thread Michael Felt
Michael Felt added the comment: Excellent!! aixtools@gcc119:[/home/aixtools/cpython/cpython-master]git pr 21640 remote: Enumerating objects: 50, done. remote: Counting objects: 100% (50/50), done. remote: Compressing objects: 100% (4/4), done. remote: Total 58 (delta 46), reused 48 (delta 46),

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-27 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +20781 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21640 ___ Python tracker

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-27 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: There are two errors in test_io, both are not related to AIX. The first one is in test_fspath_support. It is exposed on non-UTF-8 locales. AIX by accident use ISO8859-1 locale by default. The second one is in test_reader_writer_close_error_on_close and

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-26 Thread Michael Felt
Michael Felt added the comment: Neat! extra arguments!! The warnings - extracted: == CPython 3.10.0a0 (heads/master-dirty:b1a8730, Jul 26 2020, 14:00:34) [GCC 7.2.0] == AIX-2-00F9C1964C00-powerpc-32bit big-endian == cwd: /home/aixtools/cpython/cpython-master/build/test_python_27984450▒ ==

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your report (and for all other heroic work for maintaining AIX). Breaking only one test on AIX looks like a good news. Do you able to run tests manually? Could you please run the following command? ./python -m test --list-cases -uall

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-26 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue41401] Using non-ascii that require UTF-8 breaks AIX testing

2020-07-26 Thread Michael Felt
New submission from Michael Felt : issue41069 introduces tests for paths/files containing non-ascii characters. On AIX - since the merge of PR21035 and PR21156 - the bots have been broken, i.e., returning test failed. commit 700cfa8c90a90016638bac13c4efd03786b2b2a0 Author: Serhiy Storchaka