[issue35773] test_bdb fails on non-UTF-8 locale

2020-07-05 Thread Michael Felt
Michael Felt added the comment: Thanks for getting back to this. ++1 :) On 25/06/2020 11:49, Serhiy Storchaka wrote: > Serhiy Storchaka added the comment: > > test_bdb fails on non-UTF-8 locale because Python executes a Python code from > the corresponding "encodings" submodule. There are sh

[issue35773] test_bdb fails on non-UTF-8 locale

2020-06-25 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35773] test_bdb fails on non-UTF-8 locale

2020-06-25 Thread miss-islington
miss-islington added the comment: New changeset fdf6872f3893647e52f123ba62431aaf9f24ad3a by Miss Islington (bot) in branch '3.9': bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136) https://github.com/python/cpython/commit/fdf6872f3893647e52f123ba62431aaf9f24ad3a -- __

[issue35773] test_bdb fails on non-UTF-8 locale

2020-06-25 Thread miss-islington
miss-islington added the comment: New changeset 84f9c23a12eb091ac5327ebcba0d63794085b7f8 by Miss Islington (bot) in branch '3.8': bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136) https://github.com/python/cpython/commit/84f9c23a12eb091ac5327ebcba0d63794085b7f8 -- __

[issue35773] test_bdb fails on non-UTF-8 locale

2020-06-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 94eee69e9b3a7e7d33142a47ffea560beb8f1596 by Serhiy Storchaka in branch 'master': bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136) https://github.com/python/cpython/commit/94eee69e9b3a7e7d33142a47ffea560beb8f1596 -- _

[issue35773] test_bdb fails on non-UTF-8 locale

2020-06-25 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +20303 pull_request: https://github.com/python/cpython/pull/21144 ___ Python tracker _

[issue35773] test_bdb fails on non-UTF-8 locale

2020-06-25 Thread miss-islington
Change by miss-islington : -- pull_requests: +20304 pull_request: https://github.com/python/cpython/pull/21145 ___ Python tracker ___ __

[issue35773] test_bdb fails on non-UTF-8 locale

2020-06-25 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +20296 stage: -> patch review pull_request: https://github.com/python/cpython/pull/21136 ___ Python tracker ___

[issue35773] test_bdb fails on non-UTF-8 locale

2020-06-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: test_bdb fails on non-UTF-8 locale because Python executes a Python code from the corresponding "encodings" submodule. There are shortcuts for the UTF-8 codec which avoid using the Python code. -- nosy: +serhiy.storchaka title: test_bdb fails on AI