summaryrefslogtreecommitdiff
path: root/lab/branches.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-01-07 08:46:35 -0500
committerNed Batchelder <ned@nedbatchelder.com>2016-01-07 08:46:35 -0500
commitcefd14cafc49a244c865885c87f019217d6d3a2f (patch)
treea87de4c05590917157b4e1a69617a94247daf48a /lab/branches.py
parent8b7c4c1bf2bd0ea40c6da1c9d09f4f978835fa3b (diff)
downloadpython-coveragepy-git-cefd14cafc49a244c865885c87f019217d6d3a2f.tar.gz
Bytecode not byte code
--HG-- branch : ast-branch
Diffstat (limited to 'lab/branches.py')
-rw-r--r--lab/branches.py2
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: