D12351: check-code: remove ban on old-style classes
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Fri Mar 4 03:33:04 UTC 2022
indygreg created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
In Python 3, `class foo:` is equivalent to `class foo(object):`. So
we can allow the former form now.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12351
AFFECTED FILES
contrib/check-code.py
tests/test-contrib-check-code.t
CHANGE DETAILS
diff --git a/tests/test-contrib-check-code.t b/tests/test-contrib-check-code.t
--- a/tests/test-contrib-check-code.t
+++ b/tests/test-contrib-check-code.t
@@ -51,12 +51,6 @@
./quote.py:5:
> '"""', 42+1, """and
missing whitespace in expression
- ./classstyle.py:4:
- > class oldstyle_class:
- old-style class, use class foo(object)
- ./classstyle.py:7:
- > class empty():
- class foo() creates old style object, use class foo(object)
[1]
$ cat > python3-compat.py << NO_CHECK_EOF
> foo <> bar
diff --git a/contrib/check-code.py b/contrib/check-code.py
--- a/contrib/check-code.py
+++ b/contrib/check-code.py
@@ -343,16 +343,6 @@
"linebreak after :",
),
(
- r'class\s[^( \n]+:',
- "old-style class, use class foo(object)",
- r'#.*old-style',
- ),
- (
- r'class\s[^( \n]+\(\):',
- "class foo() creates old style object, use class foo(object)",
- r'#.*old-style',
- ),
- (
r'\b(%s)\('
% '|'.join(k for k in keyword.kwlist if k not in ('print', 'exec')),
"Python keyword is not a function",
To: indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list