diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-07 20:07:04 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-07 20:07:04 -0500 |
commit | b7035114aa515d9d1fe171a9bf678868e76d8f74 (patch) | |
tree | 60609f38079b9de18cdbee1d255e96e9c666dd31 /lab/branches.py | |
parent | d1c92d8e6b066a7b16d625b566853821afe8b46c (diff) | |
parent | d93ddb9524a3e3535541812bbeade8e8ff822409 (diff) | |
download | python-coveragepy-git-b7035114aa515d9d1fe171a9bf678868e76d8f74.tar.gz |
Branch analysis is now done with AST instead of bytecode
Diffstat (limited to 'lab/branches.py')
-rw-r--r-- | lab/branches.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lab/branches.py b/lab/branches.py index 275eef4a..d1908d0f 100644 --- a/lab/branches.py +++ b/lab/branches.py @@ -21,7 +21,7 @@ def my_function(x): # Notice that "while 1" also has this problem. Even though the compiler # knows there's no computation at the top of the loop, it's still expressed - # in byte code as a branch with two possibilities. + # in bytecode as a branch with two possibilities. i = 0 while 1: |