Skip to content

Commit 1e05a6b

Browse files
committed
Simplify tests
1 parent 8651e81 commit 1e05a6b

File tree

3 files changed

+14
-17
lines changed

3 files changed

+14
-17
lines changed

Lib/test/test_tools/i18n_data/ascii-escapes.pot

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ msgstr ""
3939
msgid "\177"
4040
msgstr ""
4141

42-
#. characters 128-255
42+
#. some characters in the 128-255 range
4343
#: escapes.py:20
44-
msgid ‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ"
44+
msgid   ÿ"
4545
msgstr ""
4646

47-
#. some characters >= 256
48-
#: escapes.py:26
49-
msgid "ě š č ř α β γ δ ㄱ ㄲ ㄴ ㄷ"
47+
#. some characters >= 256 encoded as 2, 3 and 4 bytes, respectively
48+
#: escapes.py:23
49+
msgid "α ㄱ 𓂀"
5050
msgstr ""
5151

Lib/test/test_tools/i18n_data/escapes.pot

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ msgstr ""
3939
msgid "\177"
4040
msgstr ""
4141

42-
#. characters 128-255
42+
#. some characters in the 128-255 range
4343
#: escapes.py:20
44-
msgid "\302\200\302\201\302\202\302\203\302\204\302\205\302\206\302\207\302\210\302\211\302\212\302\213\302\214\302\215\302\216\302\217\302\220\302\221\302\222\302\223\302\224\302\225\302\226\302\227\302\230\302\231\302\232\302\233\302\234\302\235\302\236\302\237\302\240\302\241\302\242\302\243\302\244\302\245\302\246\302\247\302\250\302\251\302\252\302\253\302\254\302\255\302\256\302\257\302\260\302\261\302\262\302\263\302\264\302\265\302\266\302\267\302\270\302\271\302\272\302\273\302\274\302\275\302\276\302\277\303\200\303\201\303\202\303\203\303\204\303\205\303\206\303\207\303\210\303\211\303\212\303\213\303\214\303\215\303\216\303\217\303\220\303\221\303\222\303\223\303\224\303\225\303\226\303\227\303\230\303\231\303\232\303\233\303\234\303\235\303\236\303\237\303\240\303\241\303\242\303\243\303\244\303\245\303\246\303\247\303\250\303\251\303\252\303\253\303\254\303\255\303\256\303\257\303\260\303\261\303\262\303\263\303\264\303\265\303\266\303\267\303\270\303\271\303\272\303\273\303\274\303\275\303\276\303\277"
44+
msgid "\302\200 \302\240 \303\277"
4545
msgstr ""
4646

47-
#. some characters >= 256
48-
#: escapes.py:26
49-
msgid "\304\233 \305\241 \304\215 \305\231 \316\261 \316\262 \316\263 \316\264 \343\204\261 \343\204\262 \343\204\264 \343\204\267"
47+
#. some characters >= 256 encoded as 2, 3 and 4 bytes, respectively
48+
#: escapes.py:23
49+
msgid "\316\261 \343\204\261 \360\223\202\200"
5050
msgstr ""
5151

Lib/test/test_tools/i18n_data/escapes.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,8 @@
1616
# ascii char 127
1717
_('\x7f')
1818

19-
# characters 128-255
20-
_('\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90'
21-
'\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0'
22-
'¡¢£¤¥¦§¨©ª«¬\xad®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞ'
23-
'ßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ')
19+
# some characters in the 128-255 range
20+
_('\x80 \xa0 ÿ')
2421

25-
# some characters >= 256
26-
_('ě š č ř α β γ δ ㄱ ㄲ ㄴ ㄷ')
22+
# some characters >= 256 encoded as 2, 3 and 4 bytes, respectively
23+
_('α ㄱ 𓂀')

0 commit comments

Comments
 (0)