diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-06-23 10:03:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 10:03:00 (GMT) |
commit | fcde2c6a8c99a56576b25733d5cc60bce6d51f46 (patch) | |
tree | 5b369bec44a2bd6534d5ace1e51d3d1fe21fe8f5 /Lib/test/test_codeop.py | |
parent | ef89b2bf42650accd460973f2ecb4f8d661fa5c4 (diff) | |
download | cpython-fcde2c6a8c99a56576b25733d5cc60bce6d51f46.zip cpython-fcde2c6a8c99a56576b25733d5cc60bce6d51f46.tar.gz cpython-fcde2c6a8c99a56576b25733d5cc60bce6d51f46.tar.bz2 |
bpo-28395: Remove unnecessary semicolons in tests (GH-26868)
(cherry picked from commit 5a3108044d2e5b694da2d1f4176c9bbaef15c142)
Co-authored-by: Dong-hee Na <donghee.na@python.org>
Diffstat (limited to 'Lib/test/test_codeop.py')
-rw-r--r-- | Lib/test/test_codeop.py | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/Lib/test/test_codeop.py b/Lib/test/test_codeop.py index 66caf5a..98f4be2 100644 --- a/Lib/test/test_codeop.py +++ b/Lib/test/test_codeop.py @@ -178,21 +178,21 @@ class CodeopTests(unittest.TestCase): ai("from a import (b,c") ai("from a import (b,c,") - ai("["); - ai("[a"); - ai("[a,"); - ai("[a,b"); - ai("[a,b,"); - - ai("{"); - ai("{a"); - ai("{a:"); - ai("{a:b"); - ai("{a:b,"); - ai("{a:b,c"); - ai("{a:b,c:"); - ai("{a:b,c:d"); - ai("{a:b,c:d,"); + ai("[") + ai("[a") + ai("[a,") + ai("[a,b") + ai("[a,b,") + + ai("{") + ai("{a") + ai("{a:") + ai("{a:b") + ai("{a:b,") + ai("{a:b,c") + ai("{a:b,c:") + ai("{a:b,c:d") + ai("{a:b,c:d,") ai("a(") ai("a(b") |