summaryrefslogtreecommitdiff
path: root/pygments/util.py
diff options
context:
space:
mode:
authorTim Hatch <tim@timhatch.com>2012-08-26 23:45:56 -0700
committerTim Hatch <tim@timhatch.com>2012-08-26 23:45:56 -0700
commitcce195e4b0beda79fc2037b3c323255195f498a3 (patch)
tree9844976a097073fe7b04c6640c0bbe39e012799d /pygments/util.py
parentbff97c8b026c9dad45751be77a2191d82f4862fc (diff)
downloadpygments-cce195e4b0beda79fc2037b3c323255195f498a3.tar.gz
Handle non-BMP Unicode ranges consistently, regardless of Python build.
Diffstat (limited to 'pygments/util.py')
-rw-r--r--pygments/util.py45
1 files changed, 45 insertions, 0 deletions
diff --git a/pygments/util.py b/pygments/util.py
index f8c6c824..127f6e87 100644
--- a/pygments/util.py
+++ b/pygments/util.py
@@ -206,6 +206,51 @@ def looks_like_xml(text):
_looks_like_xml_cache[key] = rv
return rv
+# Python narrow build compatibility
+
+def _surrogatepair(c):
+ return (0xd7c0 + (c >> 10), (0xdc00 + (c & 0x3ff)))
+
+def unirange(a, b):
+ """
+ Returns a regular expression string to match the given non-BMP range.
+ """
+ if b < a:
+ raise ValueError("Bad character range")
+ if a < 0x10000 or b < 0x10000:
+ raise ValueError("unirange is only defined for non-BMP ranges")
+
+ if sys.maxunicode > 0xffff:
+ # wide build
+ return u'[%s-%s]' % (unichr(a), unichr(b))
+ else:
+ # narrow build stores surrogates, and the 're' module handles them
+ # (incorrectly) as characters. Since there is still ordering among
+ # these characters, expand the range to one that it understands. Some
+ # background in http://bugs.python.org/issue3665 and
+ # http://bugs.python.org/issue12749
+ #
+ # Additionally, the lower constants are using unichr rather than
+ # literals because jython [which uses the wide path] can't load this
+ # file if they are literals.
+ ah, al = _surrogatepair(a)
+ bh, bl = _surrogatepair(b)
+ if ah == bh:
+ return u'(?:%s[%s-%s])' % (unichr(ah), unichr(al), unichr(bl))
+ else:
+ buf = []
+ buf.append(u'%s[%s-%s]' %
+ (unichr(ah), unichr(al),
+ ah == bh and unichr(bl) or unichr(0xdfff)))
+ if ah - bh > 1:
+ buf.append(u'[%s-%s][%s-%s]' %
+ unichr(ah+1), unichr(bh-1), unichr(0xdc00), unichr(0xdfff))
+ if ah != bh:
+ buf.append(u'%s[%s-%s]' %
+ (unichr(bh), unichr(0xdc00), unichr(bl)))
+
+ return u'(?:' + u'|'.join(buf) + u')'
+
# Python 2/3 compatibility
if sys.version_info < (3,0):