Skip to content

Commit d8f0664

Browse files
derek73claude
andcommitted
Remove the dead regexes.no_vowels config (#268)
Nothing in nameparser/, tests/, or docs/ referenced it -- it was dead in v1 and the 2.0 pipeline never looked at it either. Reading CONSTANTS.regexes.no_vowels now raises AttributeError like any other unknown key (#256). No dedicated test: asserting a key's absence from a config constant is the constant-content testing we avoid. The full suite passing with no residual references is the evidence. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 020e5ad commit d8f0664

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

nameparser/config/regexes.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
"double_quotes": re.compile(r'\"(.*?)\"'),
2727
"parenthesis": re.compile(r'\((.*?)\)'),
2828
"roman_numeral": re.compile(r'^(X|IX|IV|V?I{0,3})$', re.I),
29-
"no_vowels": re.compile(r'^[^aeyiuo]+$', re.I),
3029
"period_not_at_end": re.compile(r'.*\..+$', re.I),
3130
"emoji": re_emoji,
3231
"bidi": re_bidi,

0 commit comments

Comments
 (0)