Parse a template and then normalize the resulting Expression.
(text)
| 42 | |
| 43 | |
| 44 | def _normparse(text): |
| 45 | """Parse a template and then normalize the resulting Expression.""" |
| 46 | return _normexpr(functemplate._parse(text)) |
| 47 | |
| 48 | |
| 49 | class ParseTest(unittest.TestCase): |
no test coverage detected