generate_changelog.actions.text_processing.RegExCommand RegExCommand# class generate_changelog.actions.text_processing.RegExCommand[source]# A base class to hold regular expression information. pattern: Union[str, Callable[[], str]]# The regular expression to match against. ascii_flag: bool = False# ignorecase_flag: bool = False# locale_flag: bool = False# multiline_flag: bool = False# dotall_flag: bool = False# verbose_flag: bool = False# property flags: RegexFlag# The combined RegexFlags. __init__(pattern, ascii_flag=False, ignorecase_flag=False, locale_flag=False, multiline_flag=False, dotall_flag=False, verbose_flag=False)# Parameters: pattern (str | Callable[[], str]) – ascii_flag (bool) – ignorecase_flag (bool) – locale_flag (bool) – multiline_flag (bool) – dotall_flag (bool) – verbose_flag (bool) – Return type: None