From e26f3b9fa4bbb8288258dad1c398d4e9026c894f Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Fri, 3 Aug 2018 15:55:24 +0700 Subject: test_api.py: Remove redundant PYPY check ERROR_HAS_COL_NUM is always True for PYPY. --- pyflakes/test/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyflakes/test/test_api.py b/pyflakes/test/test_api.py index 5e5df82..8bdb698 100644 --- a/pyflakes/test/test_api.py +++ b/pyflakes/test/test_api.py @@ -501,7 +501,7 @@ foo(bar=baz, bax) """ sourcePath = self.makeTempFile(source) last_line = ' ^\n' if ERROR_HAS_LAST_LINE else '' - column = '13:' if ERROR_HAS_COL_NUM or PYPY else '' + column = '13:' if ERROR_HAS_COL_NUM else '' if sys.version_info >= (3, 5): message = 'positional argument follows keyword argument' -- cgit v1.2.1