aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy
diff options
context:
space:
mode:
authorbors-servo <servo-ops@mozilla.com>2020-06-21 11:35:20 -0400
committerGitHub <noreply@github.com>2020-06-21 11:35:20 -0400
commit3f999ce785faf8a011302d2ab4640c63c97619a8 (patch)
tree2b70164e800f81ac499095d7a84c671300b3ab9a /python/tidy
parentc4a2bd1a429204f474d86dfc85ba51d13ef533d7 (diff)
parentce01d42b70caf0ffe3a04d8511765a8ca9559690 (diff)
downloadservo-3f999ce785faf8a011302d2ab4640c63c97619a8.tar.gz
servo-3f999ce785faf8a011302d2ab4640c63c97619a8.zip
Auto merge of #27007 - saschanaz:py3-flake, r=jdm
Upgrade flake8/pyflakes for Py3 compatibility <!-- Please describe your changes on the following line: --> --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #___ (GitHub issue number if applicable) <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because ___ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
Diffstat (limited to 'python/tidy')
-rw-r--r--python/tidy/servo_tidy/tidy.py51
-rw-r--r--python/tidy/setup.py6
2 files changed, 30 insertions, 27 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py
index fae0b1a7907..d8cf1823302 100644
--- a/python/tidy/servo_tidy/tidy.py
+++ b/python/tidy/servo_tidy/tidy.py
@@ -33,10 +33,11 @@ wpt = os.path.join(topdir, "tests", "wpt")
def wpt_path(*args):
return os.path.join(wpt, *args)
+
CONFIG_FILE_PATH = os.path.join(".", "servo-tidy.toml")
WPT_MANIFEST_PATH = wpt_path("include.ini")
# regex source https://stackoverflow.com/questions/6883049/
-URL_REGEX = re.compile(b'https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+')
+URL_REGEX = re.compile(br'https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+')
# Import wptmanifest only when we do have wpt in tree, i.e. we're not
# inside a Firefox checkout.
@@ -105,8 +106,8 @@ WEBIDL_STANDARDS = [
b"//github.com/immersive-web/webxr-hands-input/",
b"//gpuweb.github.io",
# Not a URL
- b"// This interface is entirely internal to Servo, and should not be" +
- b" accessible to\n// web pages."
+ b"// This interface is entirely internal to Servo, and should not be"
+ + b" accessible to\n// web pages."
]
@@ -228,14 +229,14 @@ def check_license(file_name, lines):
max_blank_lines = 2 if lines[0].startswith(b"#!") else 1
license_block = []
- for l in lines:
- l = l.rstrip(b'\n')
- if not l.strip():
+ for line in lines:
+ line = line.rstrip(b'\n')
+ if not line.strip():
blank_lines += 1
if blank_lines >= max_blank_lines:
break
continue
- line = uncomment(l)
+ line = uncomment(line)
if line is not None:
license_block.append(line)
@@ -250,7 +251,7 @@ def check_modeline(file_name, lines):
for idx, line in enumerate(lines[:5]):
if re.search(b'^.*[ \t](vi:|vim:|ex:)[ \t]', line):
yield (idx + 1, "vi modeline present")
- elif re.search(b'-\*-.*-\*-', line, re.IGNORECASE):
+ elif re.search(br'-\*-.*-\*-', line, re.IGNORECASE):
yield (idx + 1, "emacs file variables present")
@@ -271,10 +272,10 @@ def contains_url(line):
def is_unsplittable(file_name, line):
return (
- contains_url(line) or
- file_name.endswith(".rs") and
- line.startswith(b"use ") and
- b"{" not in line
+ contains_url(line)
+ or file_name.endswith(".rs")
+ and line.startswith(b"use ")
+ and b"{" not in line
)
@@ -327,6 +328,7 @@ def check_flake8(file_name, contents):
ignore = {
"W291", # trailing whitespace; the standard tidy process will enforce no trailing whitespace
+ "W503", # linebreak before binary operator; replaced by W504 - linebreak after binary operator
"E501", # 80 character line length; the standard tidy process will enforce line length
}
@@ -478,7 +480,7 @@ def check_shell(file_name, lines):
if " [ " in stripped or stripped.startswith("[ "):
yield (idx + 1, "script should use `[[` instead of `[` for conditional testing")
- for dollar in re.finditer('\$', stripped):
+ for dollar in re.finditer(r'\$', stripped):
next_idx = dollar.end()
if next_idx < len(stripped):
next_char = stripped[next_idx]
@@ -598,14 +600,15 @@ def check_rust(file_name, lines):
multi_line_string = True
# get rid of comments
- line = re.sub('//.*?$|/\*.*?$|^\*.*?$', '//', line)
+ line = re.sub(r'//.*?$|/\*.*?$|^\*.*?$', '//', line)
# get rid of attributes that do not contain =
- line = re.sub('^#[A-Za-z0-9\(\)\[\]_]*?$', '#[]', line)
+ line = re.sub(r'^#[A-Za-z0-9\(\)\[\]_]*?$', '#[]', line)
# flag this line if it matches one of the following regular expressions
# tuple format: (pattern, format_message, filter_function(match, line))
- no_filter = lambda match, line: True
+ def no_filter(match, line):
+ return True
regex_rules = [
# There should not be any extra pointer dereferencing
(r": &Vec<", "use &[T] instead of &Vec<T>", no_filter),
@@ -849,16 +852,16 @@ def check_spec(file_name, lines):
if SPEC_BASE_PATH not in file_name:
return
file_name = os.path.relpath(os.path.splitext(file_name)[0], SPEC_BASE_PATH)
- patt = re.compile("^\s*\/\/.+")
+ patt = re.compile(r"^\s*\/\/.+")
# Pattern representing a line with a macro
- macro_patt = re.compile("^\s*\S+!(.*)$")
+ macro_patt = re.compile(r"^\s*\S+!(.*)$")
# Pattern representing a line with comment containing a spec link
- link_patt = re.compile("^\s*///? (<https://.+>|https://.+)$")
+ link_patt = re.compile(r"^\s*///? (<https://.+>|https://.+)$")
# Pattern representing a line with comment or attribute
- comment_patt = re.compile("^\s*(///?.+|#\[.+\])$")
+ comment_patt = re.compile(r"^\s*(///?.+|#\[.+\])$")
brace_count = 0
in_impl = False
@@ -924,7 +927,7 @@ def check_config_file(config_file, print_text=True, no_wpt=False):
continue
# Check for invalid tables
- if re.match("\[(.*?)\]", line.strip()):
+ if re.match(r"\[(.*?)\]", line.strip()):
table_name = re.findall(r"\[(.*?)\]", line)[0].strip()
if table_name not in ("configs", "blocked-packages", "ignore", "check_ext"):
yield config_file, idx + 1, "invalid config table [%s]" % table_name
@@ -954,10 +957,10 @@ def check_config_file(config_file, print_text=True, no_wpt=False):
key = line.split("=")[0].strip()
# Check for invalid keys inside [configs] and [ignore] table
- if (current_table == "configs" and key not in config or
- current_table == "ignore" and key not in config["ignore"] or
+ if (current_table == "configs" and key not in config
+ or current_table == "ignore" and key not in config["ignore"]
# Any key outside of tables
- current_table == ""):
+ or current_table == ""):
yield config_file, idx + 1, "invalid config key '%s'" % key
# Parse config file
diff --git a/python/tidy/setup.py b/python/tidy/setup.py
index 66229fe4c91..dddb7f01f0f 100644
--- a/python/tidy/setup.py
+++ b/python/tidy/setup.py
@@ -14,7 +14,7 @@ from setuptools import setup, find_packages
VERSION = '0.3.0'
install_requires = [
- "flake8==2.4.1",
+ "flake8==3.8.3",
"toml==0.9.2",
"colorama==0.3.7",
"voluptuous==0.11.5",
@@ -26,13 +26,13 @@ here = os.path.dirname(os.path.abspath(__file__))
try:
with open(os.path.join(here, 'README.rst')) as doc:
readme = doc.read()
-except:
+except Exception:
readme = ''
try:
with open(os.path.join(here, 'HISTORY.rst')) as doc:
history = doc.read()
-except:
+except Exception:
history = ''
long_description = readme + '\n\n' + history