Mercurial > public > mercurial-scm > hg
diff tests/test-check-code.t @ 25140:317333e0793c
check-code: fix the error message about 'class foo():'
Using 'classs foo():' result in old style object instead of new style object. We
do not want old style object so this check is unrelated to 2.4.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Sun, 17 May 2015 17:40:26 -0700 |
parents | 68633ff2b608 |
children | 24140873ca4c |
line wrap: on
line diff
--- a/tests/test-check-code.t Sun May 17 17:36:26 2015 -0700 +++ b/tests/test-check-code.t Sun May 17 17:40:26 2015 -0700 @@ -115,7 +115,7 @@ old-style class, use class foo(object) ./classstyle.py:7: > class empty(): - class foo() not available in Python 2.4, use class foo(object) + class foo() creates old style object, use class foo(object) [1] $ cat > python3-compat.py << EOF > foo <> bar