diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-18 08:05:05 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-02-18 08:05:05 +0200 |
commit | 8aba316feadb7c8469eea38aec3076ccf72255df (patch) | |
tree | aceb1801b9765699d8b67166f2ad743dab2c936d /Lib/test/test_locale.py | |
parent | 1130c7f6935bb5d5f75a4e6138efce2496cbc28f (diff) | |
parent | 095458596d51bc5c078c0fd5679b8fcd82071419 (diff) | |
download | cpython-git-8aba316feadb7c8469eea38aec3076ccf72255df.tar.gz |
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 81fe57d0cb..fae2c3dabb 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)) |