diff options
author | Georg Brandl <georg@python.org> | 2007-12-05 07:02:47 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-12-05 07:02:47 (GMT) |
commit | 2d3953bd7854868e0949dd009fadfb43ec95a554 (patch) | |
tree | 7aaf9d2129e9d6a901babde17edc82553bb7694a /Python | |
parent | 0116158c7f50741e642f0900993946cc360f162f (diff) | |
download | cpython-2d3953bd7854868e0949dd009fadfb43ec95a554.zip cpython-2d3953bd7854868e0949dd009fadfb43ec95a554.tar.gz cpython-2d3953bd7854868e0949dd009fadfb43ec95a554.tar.bz2 |
Fix typo.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 677dfc2..e218d05 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -622,7 +622,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) next opcode. A successful prediction saves a trip through the eval-loop including - its two unpredictable branches, the HASARG test and the switch-case. + its two unpredictable branches, the HAS_ARG test and the switch-case. If collecting opcode statistics, turn off prediction so that statistics are accurately maintained (the predictions bypass |