From a647ee1f448fa37c1ae88b8c667b69ed5221179a Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Wed, 12 Jul 2017 23:11:04 +0200 Subject: [PATCH] Finally fixed pretty much all the tests. --- test/normalizer_issue_files/E22.py | 3 --- test/normalizer_issue_files/python3.py | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/test/normalizer_issue_files/E22.py b/test/normalizer_issue_files/E22.py index dcf9a4b..82ff6a4 100644 --- a/test/normalizer_issue_files/E22.py +++ b/test/normalizer_issue_files/E22.py @@ -145,9 +145,6 @@ if not -5 < x < +5: print >> sys.stdout, "x is an integer." x = x / 2 - 1 -if alpha[:-i]: - *a, b = (1, 2, 3) - def squares(n): return (i**2 for i in range(n)) diff --git a/test/normalizer_issue_files/python3.py b/test/normalizer_issue_files/python3.py index 21935ee..7d69492 100644 --- a/test/normalizer_issue_files/python3.py +++ b/test/normalizer_issue_files/python3.py @@ -75,3 +75,7 @@ def x(b: tuple = (1, 2))->int: #: E252:11 E252:12 E231:8 def b(a:int=1): pass + + +if alpha[:-i]: + *a, b = (1, 2, 3)