summaryrefslogtreecommitdiff
path: root/Python/peephole.c
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-26 05:35:26 +0000
committerMartin Panter <vadmium+py@gmail.com>2016-05-26 05:35:26 +0000
commitecaaa548245ae3431815a70162b0d6ef12700551 (patch)
tree24d972cca3d2c0aa62038d7c84cb2d5c628b55be /Python/peephole.c
parent77e3dc3f7da072756adfe8a14cb24bb4a3b60822 (diff)
downloadcpython-ecaaa548245ae3431815a70162b0d6ef12700551.tar.gz
Issue #27076: Doc, comment and tests spelling fixes
Most fixes to Doc/ and Lib/ directories by Ville Skytt?.
Diffstat (limited to 'Python/peephole.c')
-rw-r--r--Python/peephole.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/peephole.c b/Python/peephole.c
index 59ad3b762f..4e657fa176 100644
--- a/Python/peephole.c
+++ b/Python/peephole.c
@@ -344,7 +344,7 @@ markblocks(unsigned char *code, Py_ssize_t len)
appear before MAKE_FUNCTION; in this case both opcodes are skipped.
EXTENDED_ARG preceding any other opcode causes the optimizer to bail.
- Optimizations are restricted to simple transformations occuring within a
+ Optimizations are restricted to simple transformations occurring within a
single basic block. All transformations keep the code size the same or
smaller. For those that reduce size, the gaps are initially filled with
NOPs. Later those NOPs are removed and the jump addresses retargeted in