コード例 #1
0
ファイル: test_template.py プロジェクト: Ifiht/beets
def _normparse(text):
    """Parse a template and then normalize the resulting Expression."""
    return _normexpr(functemplate._parse(text))
コード例 #2
0
def _normparse(text):
    """Parse a template and then normalize the resulting Expression."""
    return _normexpr(functemplate._parse(text))
コード例 #3
0
ファイル: test_template.py プロジェクト: Ifiht/beets
 def test_fail_on_utf8(self):
     parts = u'é'.encode('utf8')
     warnings.simplefilter("ignore")
     with self.assertRaises(UnicodeDecodeError):
         functemplate._parse(parts)
     warnings.simplefilter("default")
コード例 #4
0
 def test_fail_on_utf8(self):
     parts = u'é'.encode('utf8')
     warnings.simplefilter("ignore")
     with self.assertRaises(UnicodeDecodeError):
         functemplate._parse(parts)
     warnings.simplefilter("default")