Kaydet (Commit) 6a4b04cd authored tarafından Benjamin Peterson's avatar Benjamin Peterson Kaydeden (comit) GitHub

Revert "bpo-29571: Use correct locale encoding in test_re (#149)" (#554) (#555)

This reverts commit ace5c0fd.
üst 78ad039b
...@@ -1402,7 +1402,7 @@ class ReTests(unittest.TestCase): ...@@ -1402,7 +1402,7 @@ class ReTests(unittest.TestCase):
def test_locale_flag(self): def test_locale_flag(self):
import locale import locale
enc = locale.getpreferredencoding(False) _, enc = locale.getlocale(locale.LC_CTYPE)
# Search non-ASCII letter # Search non-ASCII letter
for i in range(128, 256): for i in range(128, 256):
try: try:
......
...@@ -134,6 +134,7 @@ Library ...@@ -134,6 +134,7 @@ Library
- bpo-29110: Fix file object leak in aifc.open() when file is given as a - bpo-29110: Fix file object leak in aifc.open() when file is given as a
filesystem path and is not in valid AIFF format. Patch by Anthony Zhang. filesystem path and is not in valid AIFF format. Patch by Anthony Zhang.
- Issue #24932: Use proper command line parsing in _testembed
- Issue #28556: Various updates to typing module: typing.Counter, typing.ChainMap, - Issue #28556: Various updates to typing module: typing.Counter, typing.ChainMap,
improved ABC caching, etc. Original PRs by Jelle Zijlstra, Ivan Levkivskyi, improved ABC caching, etc. Original PRs by Jelle Zijlstra, Ivan Levkivskyi,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment