Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…

# coding: utf8 | |
from __future__ import unicode_literals | |
from ..char_classes import LIST_ELLIPSES, LIST_ICONS | |
from ..char_classes import CONCAT_QUOTES, ALPHA, ALPHA_LOWER, ALPHA_UPPER | |
_quotes = CONCAT_QUOTES.replace("'", "") | |
_infixes = ( | |
LIST_ELLIPSES | |
+ LIST_ICONS | |
+ [ | |
r"(?<=[{al}])\.(?=[{au}])".format(al=ALPHA_LOWER, au=ALPHA_UPPER), | |
r"(?<=[{a}])[,!?](?=[{a}])".format(a=ALPHA), | |
r"(?<=[{a}])[:<>=](?=[{a}])".format(a=ALPHA), | |
r"(?<=[{a}]),(?=[{a}])".format(a=ALPHA), | |
r"(?<=[{a}])([{q}\)\]\(\[])(?=[{a}])".format(a=ALPHA, q=_quotes), | |
r"(?<=[{a}])--(?=[{a}])".format(a=ALPHA), | |
r"(?<=[0-9])-(?=[0-9])", | |
] | |
) | |
TOKENIZER_INFIXES = _infixes |