Home
last modified time | relevance | path

Searched refs:_hy_letters (Results 1 – 2 of 2) sorted by relevance

/dports/print/py-reportlab/reportlab-3.5.68/tests/
H A Dtest_platypus_paragraphs.py977 …from reportlab.platypus.paragraph import _hy_letters_pat, _hy_shy_letters_pat, _hy_letters, _hy_pf…
978 …self.assertIsNotNone(_hy_shy_letters_pat.match(_hy_letters),'pre-hyphenated word match should succ…
979 self.assertIsNone(_hy_letters_pat.match(_hy_letters),'all letters word match should fail')
980 …self.assertIsNotNone(_hy_letters_pat.match(_hy_letters.replace(u'-',u'')),'all letters word match …
/dports/print/py-reportlab/reportlab-3.5.68/src/reportlab/platypus/
H A Dparagraph.py954 _hy_letters=u'A-Za-z\xc0-\xd6\xd8-\xf6\xf8-\u024f\u1e80-\u1e85\u1e00-\u1eff\u0410-\u044f\u1e02\u1e0… variable
961 _hy_letters_pat=re.compile(u''.join((u"^[",_hy_letters,u"]+$")))
962 _hy_shy_letters_pat=re.compile(u''.join((u"^[",_hy_shy,_hy_letters,"]+$")))