Specify file open encoding as utf-8 in check-names
Signed-off-by: Yuto Takano <yuto.takano@arm.com>
This commit is contained in:
parent
381fda8550
commit
a083d15edd
1 changed files with 4 additions and 4 deletions
|
@ -273,7 +273,7 @@ class NameCheck():
|
||||||
macros = []
|
macros = []
|
||||||
|
|
||||||
for header_file in header_files:
|
for header_file in header_files:
|
||||||
with open(header_file, "r") as header:
|
with open(header_file, "r", encoding="utf-8") as header:
|
||||||
for line_no, line in enumerate(header):
|
for line_no, line in enumerate(header):
|
||||||
for macro in macro_regex.finditer(line):
|
for macro in macro_regex.finditer(line):
|
||||||
if not macro.group("macro").startswith(exclusions):
|
if not macro.group("macro").startswith(exclusions):
|
||||||
|
@ -303,7 +303,7 @@ class NameCheck():
|
||||||
mbed_words = []
|
mbed_words = []
|
||||||
|
|
||||||
for filename in files:
|
for filename in files:
|
||||||
with open(filename, "r") as fp:
|
with open(filename, "r", encoding="utf-8") as fp:
|
||||||
for line_no, line in enumerate(fp):
|
for line_no, line in enumerate(fp):
|
||||||
if exclusions.search(line):
|
if exclusions.search(line):
|
||||||
continue
|
continue
|
||||||
|
@ -337,7 +337,7 @@ class NameCheck():
|
||||||
# 1 = inside enum
|
# 1 = inside enum
|
||||||
# 2 = almost inside enum
|
# 2 = almost inside enum
|
||||||
state = 0
|
state = 0
|
||||||
with open(header_file, "r") as header:
|
with open(header_file, "r", encoding="utf-8") as header:
|
||||||
for line_no, line in enumerate(header):
|
for line_no, line in enumerate(header):
|
||||||
# Match typedefs and brackets only when they are at the
|
# Match typedefs and brackets only when they are at the
|
||||||
# beginning of the line -- if they are indented, they might
|
# beginning of the line -- if they are indented, they might
|
||||||
|
@ -399,7 +399,7 @@ class NameCheck():
|
||||||
identifiers = []
|
identifiers = []
|
||||||
|
|
||||||
for header_file in header_files:
|
for header_file in header_files:
|
||||||
with open(header_file, "r") as header:
|
with open(header_file, "r", encoding="utf-8") as header:
|
||||||
in_block_comment = False
|
in_block_comment = False
|
||||||
previous_line = ""
|
previous_line = ""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue