tiramisu/docs/src/own_option.py

11 lines
188 B
Python
Raw Normal View History

2023-12-17 21:22:52 +01:00
#!/usr/bin/env python3
import re
from tiramisu import RegexpOption
class VowelOption(RegexpOption):
__slots__ = tuple()
_type = 'vowel'
_regexp = re.compile(r"^[aeiouy]*$")