[issue37335] Improve encoding alias handling in locale coercion tests

2019-07-02 Thread STINNER Victor
STINNER Victor added the comment: Thanks Jakub Kulik. test_c_locale_coercion should pass again on 3.7, 3.8 and master branches on Solaris. -- ___ Python tracker ___ _

[issue37335] Improve encoding alias handling in locale coercion tests

2019-07-02 Thread Jakub Kulik
Change by Jakub Kulik : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue37335] Improve encoding alias handling in locale coercion tests

2019-07-02 Thread miss-islington
miss-islington added the comment: New changeset 518dc94e423398f7b0b5fd7bd5b84f138618e68e by Miss Islington (bot) in branch '3.8': bpo-37335, test_c_locale_coercion: Remove unnecessary code (GH-14447) https://github.com/python/cpython/commit/518dc94e423398f7b0b5fd7bd5b84f138618e68e -

[issue37335] Improve encoding alias handling in locale coercion tests

2019-07-02 Thread STINNER Victor
STINNER Victor added the comment: New changeset 61bf97e91620e020939d57a36918ab22579920ff by Victor Stinner (Jakub Kulík) in branch 'master': bpo-37335, test_c_locale_coercion: Remove unnecessary code (GH-14447) https://github.com/python/cpython/commit/61bf97e91620e020939d57a36918ab22579920ff

[issue37335] Improve encoding alias handling in locale coercion tests

2019-07-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +14370 pull_request: https://github.com/python/cpython/pull/14552 ___ Python tracker ___ __

[issue37335] Improve encoding alias handling in locale coercion tests

2019-07-02 Thread STINNER Victor
STINNER Victor added the comment: New changeset c53173aa00689aa1be17ce5406289718f6b30532 by Victor Stinner (Jakub Kulík) in branch '3.7': bpo-37335: Fix test_c_locale_coercion to handle any ASCII alias (GH-14449) https://github.com/python/cpython/commit/c53173aa00689aa1be17ce5406289718f6b30532

[issue37335] Improve encoding alias handling in locale coercion tests

2019-06-28 Thread Jakub Kulik
Change by Jakub Kulik : -- pull_requests: +14265 pull_request: https://github.com/python/cpython/pull/14449 ___ Python tracker ___ _

[issue37335] Improve encoding alias handling in locale coercion tests

2019-06-28 Thread Jakub Kulik
Change by Jakub Kulik : -- pull_requests: +14263 pull_request: https://github.com/python/cpython/pull/14447 ___ Python tracker ___ _

[issue37335] Improve encoding alias handling in locale coercion tests

2019-06-28 Thread Jakub Kulik
Jakub Kulik added the comment: Python 3.8+ encodings are always normalized and thus no output variations handling is necessary (the code is no longer necessary). Python 3.7 (and possibly lower) can have variations in encodings - that should be fixed with codecs.lookup functions. --