Searched refs:with_pattern (Results 1 – 5 of 5) sorted by relevance
48 @parse.with_pattern(r"\d+")59 @parse.with_pattern(choice_pattern)70 @parse.with_pattern(choice_pattern)79 @parse.with_pattern(r"\d+")103 @parse.with_pattern(r"Alice|Bob|Charly")
775 @parse.with_pattern(r'((\w+))', regex_group_count=2)779 @parse.with_pattern(r'\d+')864 @parse.with_pattern(r'[ab]')877 @parse.with_pattern(r'(meter|kilometer)', regex_group_count=1)881 @parse.with_pattern(r'\d+')904 @parse.with_pattern(r'(meter|kilometer)', regex_group_count=1)908 @parse.with_pattern(r'\d+')928 @parse.with_pattern(r'[ab]')
79 @parse.with_pattern(r"\d+")221 from parse import Parser, with_pattern230 @with_pattern(r"\d+")
229 with_pattern=yes234 with_pattern=yes309 if test "$with_pattern" = ""311 with_pattern=no1220 if test "$with_pattern" = "no" ; then1386 with_pattern=yes
448 def with_pattern(pattern, regex_group_count=None): function