diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-12-26 22:43:33 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-12-26 22:43:33 (GMT) |
commit | 513762fe9c1c241dc1a3b69a3fe81bc90690b03e (patch) | |
tree | 276a6734be204bccc512184fb7daddab9d934a13 /Objects/longobject.c | |
parent | 0c8ee7fc8bfaf90a0717c1149f03df00a7ad6b16 (diff) | |
download | cpython-513762fe9c1c241dc1a3b69a3fe81bc90690b03e.zip cpython-513762fe9c1c241dc1a3b69a3fe81bc90690b03e.tar.gz cpython-513762fe9c1c241dc1a3b69a3fe81bc90690b03e.tar.bz2 |
use more specific type
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r-- | Objects/longobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index cea2f73..49e9d5d 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -4072,7 +4072,7 @@ v_complement(digit *z, digit *a, Py_ssize_t m) static PyObject * long_bitwise(PyLongObject *a, - int op, /* '&', '|', '^' */ + char op, /* '&', '|', '^' */ PyLongObject *b) { int nega, negb, negz; |