diff options
author | Guido van Rossum <guido@python.org> | 1996-12-05 23:43:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-12-05 23:43:35 (GMT) |
commit | a376cc5cc86c62f912886c4002ed1a9b3b213b88 (patch) | |
tree | d505b439cc8f6aac1ba75374b6652857273274c0 /Modules/stropmodule.c | |
parent | 60fca2c90fe4d00715f4ae28d68560e67955ab9b (diff) | |
download | cpython-a376cc5cc86c62f912886c4002ed1a9b3b213b88.zip cpython-a376cc5cc86c62f912886c4002ed1a9b3b213b88.tar.gz cpython-a376cc5cc86c62f912886c4002ed1a9b3b213b88.tar.bz2 |
Keep gcc -Wall happy.
Diffstat (limited to 'Modules/stropmodule.c')
-rw-r--r-- | Modules/stropmodule.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c index 7012a4f..3dc0c52 100644 --- a/Modules/stropmodule.c +++ b/Modules/stropmodule.c @@ -538,7 +538,7 @@ strop_atoi(self, args) if (args != NULL && is_tupleobject(args)) { if (!getargs(args, "(si)", &s, &base)) return NULL; - if (base != 0 && base < 2 || base > 36) { + if ((base != 0 && base < 2) || base > 36) { err_setstr(ValueError, "invalid base for atoi()"); return NULL; } @@ -585,7 +585,7 @@ strop_atol(self, args) if (args != NULL && is_tupleobject(args)) { if (!getargs(args, "(si)", &s, &base)) return NULL; - if (base != 0 && base < 2 || base > 36) { + if ((base != 0 && base < 2) || base > 36) { err_setstr(ValueError, "invalid base for atol()"); return NULL; } @@ -701,7 +701,7 @@ strop_translate(self, args) trans_table[i]=Py_CHARMASK(table[i]); if (delete!=NULL) { for(i=0; i<dellen; i++) - trans_table[delete[i]]=-1; + trans_table[(int)delete[i]]=-1; } result = PyString_FromStringAndSize((char *)NULL, inlen); |