diff options
author | Anthony Sottile <asottile@umich.edu> | 2021-10-05 20:19:06 -0400 |
---|---|---|
committer | Anthony Sottile <asottile@umich.edu> | 2021-10-05 20:26:34 -0400 |
commit | bb57b4cf2f61c643655eef4c77683fa144b2c3cd (patch) | |
tree | 7cd511276fb32dea3e02952660611859b7e7bc45 /testsuite | |
parent | 6f01bda37924c362ebd0d342a20c586548f35b46 (diff) | |
download | pep8-bb57b4cf2f61c643655eef4c77683fa144b2c3cd.tar.gz |
Revert "Merge pull request #990 from cdce8p/whitespace-match-case"
This reverts commit 0f079a061590217515421fc337df8dbf3563fed5, reversing
changes made to 3d0ac73d8045b5fa771dbbf594ca0b9a4e581e15.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/python310.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/testsuite/python310.py b/testsuite/python310.py index 8cd98f2..2355f55 100644 --- a/testsuite/python310.py +++ b/testsuite/python310.py @@ -22,21 +22,3 @@ match var: pass case (0, 1, *_): pass -#: E271:2:6 E271:3:9 E271:5:9 E271:7:9 -var = 1 -match var: - case 1: - pass - case 2: - pass - case ( - 3 - ): - pass -#: E275:2:6 E275:3:9 E275:5:9 -var = 1 -match(var): - case(1): - pass - case_: - pass |