diff options
-rw-r--r-- | Lib/test/test_re.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index a1953209e4..92d2c1386d 100644 --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -1400,8 +1400,6 @@ class ReTests(unittest.TestCase): def test_locale_flag(self): import locale enc = locale.getpreferredencoding(False) - bletter = None - bpat = b'A' # Search non-ASCII letter for i in range(128, 256): try: @@ -1415,6 +1413,9 @@ class ReTests(unittest.TestCase): break except (UnicodeError, TypeError): pass + else: + bletter = None + bpat = b'A' # Bytes patterns pat = re.compile(bpat, re.LOCALE | re.IGNORECASE) if bletter: |