5 lines
80 B
Python
5 lines
80 B
Python
|
|
import re
|
|||
|
|
|
|||
|
|
class ParsePatterns:
|
|||
|
|
step_pattern = re.compile(r"(([A-Z]+_)+")
|