summaryrefslogtreecommitdiffstats
path: root/Lib/re.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-10-30 23:34:45 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-10-30 23:34:45 (GMT)
commitcf7b1cadd19762f63cff48713b5be7b0dd3f548e (patch)
tree063afe349714e30fd97d909c23a597ee1d0e197e /Lib/re.py
parentd9b8dc272aed9d6d69ea51107ba0246e767f33d2 (diff)
downloadcpython-cf7b1cadd19762f63cff48713b5be7b0dd3f548e.zip
cpython-cf7b1cadd19762f63cff48713b5be7b0dd3f548e.tar.gz
cpython-cf7b1cadd19762f63cff48713b5be7b0dd3f548e.tar.bz2
Fixed compile error in issue #22410. The _locale module is optional.
Diffstat (limited to 'Lib/re.py')
-rw-r--r--Lib/re.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/re.py b/Lib/re.py
index 46cea2b..199afee 100644
--- a/Lib/re.py
+++ b/Lib/re.py
@@ -122,7 +122,10 @@ This module also defines an exception 'error'.
import sys
import sre_compile
import sre_parse
-import _locale
+try:
+ import _locale
+except ImportError:
+ _locale = None
# public symbols
__all__ = [ "match", "fullmatch", "search", "sub", "subn", "split", "findall",
@@ -293,6 +296,8 @@ def _compile(pattern, flags):
if len(_cache) >= _MAXCACHE:
_cache.clear()
if p.flags & LOCALE:
+ if not _locale:
+ return p
loc = _locale.setlocale(_locale.LC_CTYPE)
else:
loc = None