mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551)
(cherry picked from commit 0138c4ceab
)
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
This commit is contained in:
parent
91020fade6
commit
d5ba8bbdae
3 changed files with 9 additions and 3 deletions
|
@ -255,8 +255,8 @@ PyCode_Optimize(PyObject *code, PyObject* consts, PyObject *names,
|
|||
than +255 (encoded as multiple bytes), just to keep the peephole optimizer
|
||||
simple. The optimizer leaves line number deltas unchanged. */
|
||||
|
||||
for (j = 0; j < tabsiz; j += 2) {
|
||||
if (lnotab[j] == 255) {
|
||||
for (i = 0; i < tabsiz; i += 2) {
|
||||
if (lnotab[i] == 255) {
|
||||
goto exitUnchanged;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue