]> granicus.if.org Git - python/commitdiff
Re-linewrap comments
authorRaymond Hettinger <python@rcn.com>
Mon, 8 Aug 2016 03:20:33 +0000 (20:20 -0700)
committerRaymond Hettinger <python@rcn.com>
Mon, 8 Aug 2016 03:20:33 +0000 (20:20 -0700)
Python/peephole.c

index 62625f7f45e3d5f55673c96904eb219d6842493f..b2c0279b7380e83525fd8423db83f0f9080b2d35 100644 (file)
@@ -638,22 +638,17 @@ PyCode_Optimize(PyObject *code, PyObject* consts, PyObject *names,
 
                 j = codestr[tgt];
                 if (CONDITIONAL_JUMP(j)) {
-                    /* NOTE: all possible jumps here are
-                       absolute! */
+                    /* NOTE: all possible jumps here are absolute. */
                     if (JUMPS_ON_TRUE(j) == JUMPS_ON_TRUE(opcode)) {
-                        /* The second jump will be
-                           taken iff the first is.
-                           The current opcode inherits
-                           its target's stack effect */
+                        /* The second jump will be taken iff the first is.
+                           The current opcode inherits its target's
+                           stack effect */
                         h = set_arg(codestr, i, get_arg(codestr, tgt));
                     } else {
-                        /* The second jump is not taken
-                           if the first is (so jump past
-                           it), and all conditional
-                           jumps pop their argument when
-                           they're not taken (so change
-                           the first jump to pop its
-                           argument when it's taken). */
+                        /* The second jump is not taken if the first is (so
+                           jump past it), and all conditional jumps pop their
+                           argument when they're not taken (so change the
+                           first jump to pop its argument when it's taken). */
                         h = set_arg(codestr, i, tgt + 2);
                         j = opcode == JUMP_IF_TRUE_OR_POP ?
                             POP_JUMP_IF_TRUE : POP_JUMP_IF_FALSE;