summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_codeop.py
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2020-04-27 17:35:58 (GMT)
committerGitHub <noreply@github.com>2020-04-27 17:35:58 (GMT)
commitb94dbd7ac34dc0c79512656eb17f6f07e09fca7a (patch)
tree35b56488d8a64aacac068dd56b04a6ce6ed6ed5b /Lib/test/test_codeop.py
parent2b74c835a7280840a853e3a9aaeb83758b13a458 (diff)
downloadcpython-b94dbd7ac34dc0c79512656eb17f6f07e09fca7a.zip
cpython-b94dbd7ac34dc0c79512656eb17f6f07e09fca7a.tar.gz
cpython-b94dbd7ac34dc0c79512656eb17f6f07e09fca7a.tar.bz2
bpo-40334: Support PyPARSE_DONT_IMPLY_DEDENT in the new parser (GH-19736)
Diffstat (limited to 'Lib/test/test_codeop.py')
-rw-r--r--Lib/test/test_codeop.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_codeop.py b/Lib/test/test_codeop.py
index 8c3e447..1f27830 100644
--- a/Lib/test/test_codeop.py
+++ b/Lib/test/test_codeop.py
@@ -122,7 +122,6 @@ class CodeopTests(unittest.TestCase):
av("def f():\n pass\n#foo\n")
av("@a.b.c\ndef f():\n pass\n")
- @support.skip_if_new_parser("Pegen does not support PyCF_DONT_INPLY_DEDENT yet")
def test_incomplete(self):
ai = self.assertIncomplete