This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Enhance locale testing
Type: enhancement Stage: resolved
Components: Tests Versions: Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: lemburg, loewis, python-dev, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2015-02-17 18:34 by serhiy.storchaka, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test__locale.patch serhiy.storchaka, 2015-02-17 18:34 review
Messages (3)
msg236141 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2015-02-17 18:34
Proposed patch enhance locale testing. test__locale is converted to support unittest discovery. When there are no suitable locales (e.g. there is only POSIX locale) tests are reported as skipped. Tested thousands_sep with non-english locales. Tested non-ascii values of decimal_point and thousands_sep with the ps_AF locale. In test_locale Turkish locale test no longer break a line.
msg236153 - (view) Author: Marc-Andre Lemburg (lemburg) * (Python committer) Date: 2015-02-17 22:02
On 17.02.2015 19:34, Serhiy Storchaka wrote:
> 
> Proposed patch enhance locale testing. test__locale is converted to support unittest discovery. When there are no suitable locales (e.g. there is only POSIX locale) tests are reported as skipped. Tested thousands_sep with non-english locales. Tested non-ascii values of decimal_point and thousands_sep with the ps_AF locale. In test_locale Turkish locale test no longer break a line.

Look good. Thanks, Serhiy.
msg236164 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-02-18 06:05
New changeset 7ef372f656d1 by Serhiy Storchaka in branch '2.7':
Issue #23474: Enhanced locale testing.
https://hg.python.org/cpython/rev/7ef372f656d1

New changeset b53aadd9cf85 by Serhiy Storchaka in branch '3.4':
Issue #23474: Enhanced locale testing.
https://hg.python.org/cpython/rev/b53aadd9cf85

New changeset 4f7c5349e801 by Serhiy Storchaka in branch 'default':
Issue #23474: Enhanced locale testing.
https://hg.python.org/cpython/rev/4f7c5349e801
History
Date User Action Args
2022-04-11 14:58:12adminsetgithub: 67662
2015-02-18 06:06:58serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2015-02-18 06:05:56python-devsetnosy: + python-dev
messages: + msg236164
2015-02-17 22:02:04lemburgsetmessages: + msg236153
2015-02-17 18:34:06serhiy.storchakacreate