diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-07 08:46:35 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-07 08:46:35 -0500 |
commit | cefd14cafc49a244c865885c87f019217d6d3a2f (patch) | |
tree | a87de4c05590917157b4e1a69617a94247daf48a /tests/test_arcs.py | |
parent | 8b7c4c1bf2bd0ea40c6da1c9d09f4f978835fa3b (diff) | |
download | python-coveragepy-git-cefd14cafc49a244c865885c87f019217d6d3a2f.tar.gz |
Bytecode not byte code
--HG--
branch : ast-branch
Diffstat (limited to 'tests/test_arcs.py')
-rw-r--r-- | tests/test_arcs.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_arcs.py b/tests/test_arcs.py index bb811c01..bcc6c024 100644 --- a/tests/test_arcs.py +++ b/tests/test_arcs.py @@ -942,9 +942,11 @@ class MiscArcTest(CoverageTest): def test_pathologically_long_code_object(self): # https://bitbucket.org/ned/coveragepy/issue/359 - # The structure of this file is such that an EXTENDED_ARG byte code is + # The structure of this file is such that an EXTENDED_ARG bytecode is # needed to encode the jump at the end. We weren't interpreting those # opcodes. + # Note that we no longer interpret bytecode at all, but it couldn't + # hurt to keep the test... code = """\ data = [ """ + "".join("""\ |