We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4c6a70 commit e00aea9Copy full SHA for e00aea9
pythonwhois/parse.py
@@ -494,7 +494,7 @@ def allow_trailing_comma_dict(regexes):
494
known_abbreviations = precompile_regexes_dict(known_abbreviations, re.IGNORECASE)
495
496
duplicate_spaces = re.compile(" {2,}")
497
-non_name_characters = ''.join(char for char in map(chr, range(256)) if not char.isalpha())
+non_name_characters = [char for char in map(chr, range(256)) if not char.isalpha()]
498
name_separators = re.compile(r'[, ]+')
499
comma_without_space = re.compile(r',([a-z])', re.IGNORECASE)
500
0 commit comments