summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-08-27 17:13:52 (GMT)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>2019-08-27 17:13:52 (GMT)
commitd5ba8bbdae9a59c10c1275f71415732d68fe9661 (patch)
treea1786498e01822ef21d52efd84c131ca902f93c3 /Python
parent91020fade6ca0f22eef2d338be1380b17385e715 (diff)
downloadcpython-d5ba8bbdae9a59c10c1275f71415732d68fe9661.zip
cpython-d5ba8bbdae9a59c10c1275f71415732d68fe9661.tar.gz
cpython-d5ba8bbdae9a59c10c1275f71415732d68fe9661.tar.bz2
Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551)
(cherry picked from commit 0138c4ceab1e10d42d0aa962d2ae079b46da7671) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Diffstat (limited to 'Python')
-rw-r--r--Python/peephole.c4
-rw-r--r--Python/pystrhex.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/Python/peephole.c b/Python/peephole.c
index 3e56e78..d859648 100644
--- a/Python/peephole.c
+++ b/Python/peephole.c
@@ -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;
}
}
diff --git a/Python/pystrhex.c b/Python/pystrhex.c
index 5dc7c96..9d34f71 100644
--- a/Python/pystrhex.c
+++ b/Python/pystrhex.c
@@ -57,7 +57,7 @@ static PyObject *_Py_strhex_impl(const char* argbuf, const Py_ssize_t arglen,
}
resultlen += arglen * 2;
- if (abs_bytes_per_sep >= arglen) {
+ if ((size_t)abs_bytes_per_sep >= (size_t)arglen) {
bytes_per_sep_group = 0;
abs_bytes_per_sep = 0;
}