[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-28 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-23 Thread STINNER Victor
STINNER Victor added the comment: The regression should now be fixed in 3.7 and master branches. -- ___ Python tracker ___ ___

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset 80a0ebaa8385988b1d2d71ed1f548fc32ad7 by Victor Stinner in branch '3.7': bpo-34207: Fix pymain_read_conf() for UTF-8 Mode (GH-8868) (GH-8870) https://github.com/python/cpython/commit/80a0ebaa8385988b1d2d71ed1f548fc32ad7 --

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-23 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +8346 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset 89487f51b8d6ba8a55f5de0ed689e46fefe73cc9 by Victor Stinner in branch 'master': bpo-34207: Fix pymain_read_conf() for UTF-8 Mode (GH-8868) https://github.com/python/cpython/commit/89487f51b8d6ba8a55f5de0ed689e46fefe73cc9 --

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-23 Thread STINNER Victor
STINNER Victor added the comment: I wrote PR 8867 but it doesn't fix all cases, so I abandonned it. Then I wrote PR 8868 which sets Py_UTF8Mode in pymain_read_conf() and should fix the issue. The root issue is that we have C functions which depend on the global configuration variables like

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-23 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +8343 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-23 Thread STINNER Victor
STINNER Victor added the comment: I confirm that "LC_ALL= LANG= LC_CTYPE= ./python -m test -v test_cmd_line -m test_non_ascii" fails on FreeBSD on the master branch, whereas it pass before commit d19d8d5279f156bc8f6736b5f16f069879b9519b. This commit introduced the regression. Thanks for

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-23 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +8341 stage: -> patch review ___ Python tracker ___ ___

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-22 Thread Nick Coghlan
Nick Coghlan added the comment: Nothing has changed recently in the PEP 538 implementation itself, and both those builders were green last month: * https://buildbot.python.org/all/#/builders/60/builds/181 * https://buildbot.python.org/all/#/builders/79/builds/185 The first failing debug

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-21 Thread Łukasz Langa
Łukasz Langa added the comment: Looking at what's going on here, this is quite possibly a PEP 538 side-effect (I see surrogate escapes). -- ___ Python tracker ___

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-21 Thread Łukasz Langa
Change by Łukasz Langa : -- nosy: +ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-21 Thread Łukasz Langa
Łukasz Langa added the comment: I think the root cause is this: the mentioned tests are invalid when no LC_* or LANG environment variables are present. Michael's sleuthing in issue34347 might provide a way for us to fix those. As a workaround in the mean time, if this is an option on your

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-21 Thread Łukasz Langa
Łukasz Langa added the comment: This is definitely dependent on the environment. I can reproduce exactly the same failures on a CentOS 7 box at work, too. -- nosy: +lukasz.langa ___ Python tracker

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-21 Thread Łukasz Langa
Change by Łukasz Langa : -- keywords: +3.7regression versions: +Python 3.7 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-03 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: xtreak in this case, it's an issue on the buildbot cluster, we have to be sure that we don't have this error again. and for that, we have to find the origin of the crash on buildbot. -- nosy: +matrixise ___

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-08-03 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I tried the tests on FreeBSD 11.x and FreeBSD 10.x digitalocean droplets with master branch and the tests pass. Adding information that might be helpful. # FreeBSD 11.2-RELEASE root@freebsd-s-1vcpu-1gb-blr1-01:~/cpython # uname -a FreeBSD

[issue34207] test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots

2018-07-30 Thread Kubilay Kocak
Change by Kubilay Kocak : -- nosy: +koobs title: test_cmd_line test_utf8_mode test_warnings fail in AMD64 FreeBSD CURRENT buildbots -> test_cmd_line test_utf8_mode test_warnings fail in all FreeBSD 3.x (3.8) buildbots ___ Python tracker