(elem)
| 55 | @cache # The parser instance is a singleton. |
| 56 | def _make_fontconfig_parser(): |
| 57 | def comma_separated(elem): |
| 58 | return elem + ZeroOrMore(Suppress(",") + elem) |
| 59 | |
| 60 | family = Regex(fr"([^{_family_punc}]|(\\[{_family_punc}]))*") |
| 61 | size = Regex(r"([0-9]+\.?[0-9]*|\.[0-9]+)") |
no outgoing calls
no test coverage detected
searching dependent graphs…