diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-18 06:04:37 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-18 06:04:37 (GMT) |
commit | 095458596d51bc5c078c0fd5679b8fcd82071419 (patch) | |
tree | 8810ae8e80cc54f9ade2a848d91914ba8f550160 /Lib/test/test_locale.py | |
parent | 70e2847347f9b4fd579e23cf2e2f329aab1faa5d (diff) | |
download | cpython-095458596d51bc5c078c0fd5679b8fcd82071419.zip cpython-095458596d51bc5c078c0fd5679b8fcd82071419.tar.gz cpython-095458596d51bc5c078c0fd5679b8fcd82071419.tar.bz2 |
Issue #23474: Enhanced locale testing.
Diffstat (limited to 'Lib/test/test_locale.py')
-rw-r--r-- | Lib/test/test_locale.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_locale.py b/Lib/test/test_locale.py index e979753..9369a25 100644 --- a/Lib/test/test_locale.py +++ b/Lib/test/test_locale.py @@ -511,7 +511,7 @@ class TestMiscellaneous(unittest.TestCase): self.skipTest('test needs Turkish locale') loc = locale.getlocale(locale.LC_CTYPE) if verbose: - print('got locale %a' % (loc,)) + print('testing with %a' % (loc,), end=' ', flush=True) locale.setlocale(locale.LC_CTYPE, loc) self.assertEqual(loc, locale.getlocale(locale.LC_CTYPE)) |