Message ID | 20230915094038.1178807-2-mfabian@redhat.com |
---|---|
State | New |
Headers | show |
Series | [1/3] Fix regexp syntax warnings in localedata/unicode-gen/ctype_compatibility.py | expand |
On 9/15/23 05:40, Mike FABIAN wrote: LGTM. Please commit. Reviewed-by: Carlos O'Donell <carlos@redhat.com> > --- > localedata/unicode-gen/utf8_gen.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/localedata/unicode-gen/utf8_gen.py b/localedata/unicode-gen/utf8_gen.py > index b48dc2aaa4..117c5a9652 100755 > --- a/localedata/unicode-gen/utf8_gen.py > +++ b/localedata/unicode-gen/utf8_gen.py > @@ -350,7 +350,7 @@ if __name__ == "__main__": > # the EastAsianWidth.txt file. > if re.match(r'.*<reserved-.+>\.\.<reserved-.+>.*', LINE): > continue > - if re.match(r'^[^;]*;[WF]', LINE): > + if re.match(r'^[^;]*;\s*[WF]\s*', LINE): > EAST_ASIAN_WIDTH_LINES.append(LINE.strip()) > with open(ARGS.prop_list_file, mode='r') as PROP_LIST_FILE: > PROP_LIST_LINES = []
diff --git a/localedata/unicode-gen/utf8_gen.py b/localedata/unicode-gen/utf8_gen.py index b48dc2aaa4..117c5a9652 100755 --- a/localedata/unicode-gen/utf8_gen.py +++ b/localedata/unicode-gen/utf8_gen.py @@ -350,7 +350,7 @@ if __name__ == "__main__": # the EastAsianWidth.txt file. if re.match(r'.*<reserved-.+>\.\.<reserved-.+>.*', LINE): continue - if re.match(r'^[^;]*;[WF]', LINE): + if re.match(r'^[^;]*;\s*[WF]\s*', LINE): EAST_ASIAN_WIDTH_LINES.append(LINE.strip()) with open(ARGS.prop_list_file, mode='r') as PROP_LIST_FILE: PROP_LIST_LINES = []