summaryrefslogtreecommitdiff
path: root/testsuite/python310.py
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-05-02 21:40:08 +0200
committerMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-05-02 21:40:08 +0200
commit4cca9a535cea3fd858636120c07502ad37a46803 (patch)
tree24e243f77b2309467363583d349c3e1ff180a2f0 /testsuite/python310.py
parente2ebb356246615e1749a5366592e4523bb8752ec (diff)
downloadpep8-4cca9a535cea3fd858636120c07502ad37a46803.tar.gz
Changes after review
Diffstat (limited to 'testsuite/python310.py')
-rw-r--r--testsuite/python310.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/testsuite/python310.py b/testsuite/python310.py
index b72bf6d..83b7bb4 100644
--- a/testsuite/python310.py
+++ b/testsuite/python310.py
@@ -1,12 +1,9 @@
-var, var2 = 1, 2
#: Okay
+var, var2 = 1, 2
match (var, var2):
- #: Okay
case [2, 3]:
pass
- #: Okay
case (1, 2):
pass
- #: Okay
case _:
print("Default")