diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-06-23 09:01:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 09:01:06 (GMT) |
commit | 5a3108044d2e5b694da2d1f4176c9bbaef15c142 (patch) | |
tree | 1d57a8f4beca796b4540df50eb768a89833dd83b /Lib/test/test_codeop.py | |
parent | c3f52b4d707a78eb342372a2be00f3eb846a05b9 (diff) | |
download | cpython-5a3108044d2e5b694da2d1f4176c9bbaef15c142.zip cpython-5a3108044d2e5b694da2d1f4176c9bbaef15c142.tar.gz cpython-5a3108044d2e5b694da2d1f4176c9bbaef15c142.tar.bz2 |
bpo-28395: Remove unnecessary semicolons in tests (GH-26868)
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 07b46af..17376c7 100644 --- a/Lib/test/test_codeop.py +++ b/Lib/test/test_codeop.py @@ -182,21 +182,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") |