[Python-checkins] cpython: use more specific type

benjamin.peterson python-checkins at python.org
Wed Dec 26 23:43:46 CET 2012


http://hg.python.org/cpython/rev/3b5fdb5bc597
changeset:   81078:3b5fdb5bc597
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Dec 26 16:43:33 2012 -0600
summary:
  use more specific type

files:
  Objects/longobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/longobject.c b/Objects/longobject.c
--- a/Objects/longobject.c
+++ b/Objects/longobject.c
@@ -4072,7 +4072,7 @@
 
 static PyObject *
 long_bitwise(PyLongObject *a,
-             int op,  /* '&', '|', '^' */
+             char op,  /* '&', '|', '^' */
              PyLongObject *b)
 {
     int nega, negb, negz;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list